Skip to content
This repository has been archived by the owner on Nov 27, 2022. It is now read-only.

Latest commit

 

History

History
48 lines (34 loc) · 1.15 KB

README.mkdn

File metadata and controls

48 lines (34 loc) · 1.15 KB

Keima

Deploy

wercker status

OVERVIEW

A simple, open, realtime notification service.

REQUIREMENT

  • node.js 0.8.4
  • npm 1.1.48
  • MongoDB
  • Redis

INSTALL DEPENDENCIES

$ npm install

RUN

$ node server.js

Or, you need auto-reload:

$ npm install supervisor -g
$ supervisor server.js

RUN ON HEROKU

Keima works on Heroku

$ git clone git@github.com:codefirst/keima.git
$ cd keima
$ heroku create YOUR_APP_NAME
$ git push heroku master
$ heroku addons:add mongohq:sandbox
$ heroku addons:add redistogo:nano
$ heroku config:set NODE_ENV=production
$ heroku config:set TWITTER_CALLBACK=https://YOUR_APP_NAME.herokuapp.com/auth/twitter_callback
$ heroku ps:scale web=1