Skip to content

Deploying to Heroku

asecondwill edited this page Jan 29, 2013 · 2 revisions

Deploying SprintApp to Heroku is relatively simple and only requires some additional configuration to run on the Heroku service.

  1. Install the Heroku gem locally, if needed
  2. Clone the repo to your local computer
  3. Configure Carrierwave for Amazon S3
  4. Create a Heroku app account
  5. Add the Sendgrid Heroku addon, configuring for your account.
  6. git push heroku master
  7. Load the database into the default PostgreSQL db on Heroku
  8. Seed the database
  9. Open a browser to your running SprintApp instance on Heroku!
$> gem install heroku
$> git clone git://github.com/macfanatic/SprintApp.git sprint_app
$> cd sprint_app
$> heroku apps:create my_sprintapp --stack cedar
$> heroku addons:add sendgrid:starter
$> git push heroku master  
$> heroku run rake db:schema:load
$> heroku run rake db:seed
$> heroku launch
Clone this wiki locally