Created
November 15, 2011 13:57
-
-
Save rafaelp/1367130 to your computer and use it in GitHub Desktop.
Startup DEV - Heroku Bootstrapp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
heroku auth:login | |
heroku apps:create -s cedar $1 | |
heroku sharing:add [email protected] | |
heroku sharing:add [email protected] | |
heroku sharing:add [email protected] | |
heroku addons:add shared-database:5mb | |
heroku addons:add loggly:mole | |
heroku addons:add pgbackups:auto-month | |
heroku domains:add $2 | |
heroku config:add BUNDLE_WITHOUT="development:test" | |
heroku addons:add sendgrid:starter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment