Skip to content

Instantly share code, notes, and snippets.

@joncode
Created May 8, 2012 23:55
Show Gist options
  • Select an option

  • Save joncode/2640541 to your computer and use it in GitHub Desktop.

Select an option

Save joncode/2640541 to your computer and use it in GitHub Desktop.
Heroku upload
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