Month: March 2013
-
Simple Staging/Test Environment with Heroku – Ruby on Rails
Hey everyone, This is just a quick guide on how to create a test/staging environment with Heroku. — Create staging environment heroku create –remote staging — Push to staging app heroku push staging master — Run rake db:migrate on staging app heroku run rake db:migrate –remote staging — Add pgbackups add ons heroku addons:add pgbackups…