Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 270 Bytes

heroku-cheatsheet.md

File metadata and controls

27 lines (18 loc) · 270 Bytes

Staging

Deploy develop:

git push staging develop:master

Run rake:

heroku run rake db:migrate --remote staging

Production

Deploy master:

git push production master

Run rake:

heroku run rake db:migrate --remote production