Skip to content
This repository has been archived by the owner on Dec 2, 2020. It is now read-only.

Installation on Heroku

Marcel Hecko edited this page Jan 28, 2014 · 1 revision

THIS PAGE IS A WORK IN PROGRESS

Setup dev machine

Tested on Mac OSX 10.9

Install on Heroku

Via Your Terminal

$ git clone https://github.com/square/cube.git
$ cd cube
$ rm .gitignore
$ heroku login
$ heroku create
$ heroku addons:add mongolab
$ echo 'web: node bin/collector.js' > Procfile
$ echo 'web: node bin/evaluator.js' >> Procfile

edit your bin/collector-config.js and bin/evaluator-config.js config files

$ npm install
$ git add . -A
$ git commit -am "init"
$ git push heroku master
$ heroku open