this is the web application for tilt, which creates and manages a virtual market, with investment occuring within a series of rounds.
current version: 0.3 (in development)
#current status
-
story management in pivotal tracker: https://www.pivotaltracker.com/projects/440359.
-
production deployment: http://tiltnyc.herokuapp.com/
#developer requirements
- local installation of mongodb (v2.0.2+).
- local install of node
0.8.3
+
#installation
- clone source
git clone git@github.com:justinjmoses/tilt.git
- run
npm install
(this downloads all dependencies intonode_modules
) - install coffee globally if you haven't already via
npm install -g coffee-script
#running
-
ensure mongodb is running (
sudo mongod
) -
to run the app, simply run:
coffee app
-
to change the port:
port=5000 coffee app
-
alternatively, if you install foreman (download heroku toolkit), you can run via foreman which will run using the web workers/dynos processes that heroku employs:
foreman start
#tests
-
unit tests can be run via
cake mocha
-
integration tests via
cake cuke