Skip to content
This repository has been archived by the owner on Mar 8, 2018. It is now read-only.

Deploying to Heroku

Reza Akhavan edited this page Feb 6, 2015 · 2 revisions

Setup dev machine

Tested on Mac OSX 10.9

Install on Heroku

Via Your Terminal

$ git clone https://github.com/jedireza/drywall.git
$ cd drywall
$ rm .gitignore
$ heroku login
$ heroku create
$ heroku addons:add mongolab
$ echo 'web: node app.js' > Procfile
$ npm install
$ npm install grunt-cli -g
$ mv config.example.js config.js
$ grunt build
$ git add . -A
$ git commit -am "init"
$ git push heroku master
$ heroku open