-
Notifications
You must be signed in to change notification settings - Fork 616
How to deploy to Heroku
rodowi edited this page Sep 20, 2014
·
13 revisions
- First go to Heroku and create a new app (e.g.: example-democracyos) containing an instance of MongoHQ.
- Go to the app dashboard settings in https://dashboard.heroku.com/apps/example-democracyos/settings and copy the Git URL. In this case, it's [email protected]:example-democracyos.git
- Add this as a remote in your app directory with the command
git remote add heroku [email protected]:example-democracyos.git
. You can name it whatever you want:git remote add whatever [email protected]:example-democracyos.git
. - Add the config variables needed for the app to work using
heroku config:set VAR_NAME=VALUE VAR_NAME2=VALUE2
etc. - Push the code with
git push heroku master
. Always push to the heroku's master branch for the changes to take effect.
The app should be running
TL;DR (or I'll do it from the command line)
➜ example-democracyos git:(master) heroku apps:create example-democracyos
➜ example-democracyos git:(master) heroku addons:add mongohq:sandbox
Visit our official website - Developed by Democracia en Red and contributors from the world over!