-
Notifications
You must be signed in to change notification settings - Fork 124
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.
- Install the Heroku gem locally, if needed
- Clone the repo to your local computer
- Configure Carrierwave for Amazon S3
- Create a Heroku app account
- Add the Sendgrid Heroku addon, configuring for your account.
- git push heroku master
- Load the database into the default PostgreSQL db on Heroku
- Seed the database
- 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