Alfred is a chat application written in node.js with express.js and socket.io that uses couchdb to store information and everyauth (OAuth with facebook, twitter or github) for authentication.
$ git clone [email protected]:rendro/alfred.git alfred && cd alfred
$ npm install
$ make
You can start the app with Foreman. Therefore you need to set up your .env
file:
$ cp .env.dist .env
And then fill in your app keys/secrets the app port and the session secret. You are ready to go:
$ foreman start
Currently there is a bug in one dependeny, the jscrollpane. Change line number 1392
from
$("script",elem).filter('[type="text/javascript"],not([type])').remove();
to this:
$("script",elem).filter('[type="text/javascript"]').remove();
This software is for testing reasons and far away from being deployable. Contribute by forking and send as much fancy pull requests as possible.