-
-
Save ografael/2153688 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 create $1 --stack cedar | |
heroku sharing:add [email protected] | |
heroku sharing:add [email protected] | |
heroku sharing:add [email protected] | |
heroku addons:add shared-database:5mb | |
heroku addons:add custom_domains:basic | |
heroku addons:upgrade logging:expanded | |
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