Created
May 8, 2012 23:55
-
-
Save joncode/2640541 to your computer and use it in GitHub Desktop.
Heroku upload
This file contains hidden or 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
| gem install heroku in app | |
| heroku keys:add | |
| - i told it to use id_dsa.pub instead of id_rsa.pub | |
| heroku create --stack cedar drivein | |
| - app name is driveIn | |
| - stack cedar is best heroku branch to deploy to | |
| git push heroku master | |
| - appears to be pushing my local repo to heroku | |
| RAILS_ENV=production bundle exec rake assets:precompile --trace | |
| if you wanna run https: | |
| in config environments/production | |
| config.force_ssl = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment