Created
January 12, 2011 16:34
-
-
Save americos/776406 to your computer and use it in GitHub Desktop.
Lines commonly used to set up a Heroku deployment
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
Create a new app at Heroku | |
$ heroku create | |
Heroku deployment | |
$ git push heroku master | |
To deploy your Database (you need to use taps gem: $ gem install taps) | |
$ heroku db:push | |
Open Heroku app | |
$ heroku open | |
More Heroku commands | |
http://docs.heroku.com/heroku-command |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment