Commit b365d9b4a4c81ffe7c8f35a9ebd72c064f44fd03

Authored by Drew Blas
1 parent 0684d064
Exists in master and in 1 other branch production

Added instructions for super-easy Heroku deploy

Showing 1 changed file with 23 additions and 0 deletions   Show diff stats
README.md
... ... @@ -67,6 +67,29 @@ for you. Checkout [Hoptoad](http://hoptoadapp.com) from the guys over at
67 67  
68 68 cap deploy:setup deploy
69 69  
  70 +**Deploying to Heroku:**
  71 +
  72 + 1. Clone the repository
  73 +
  74 + git clone http://github.com/jdpace/errbit.git
  75 +
  76 + 2. Create & configure for Heroku
  77 +
  78 + gem install heroku
  79 + heroku create
  80 + heroku addons:add mongohq:free
  81 + heroku addons:add sendgrid:free
  82 + heroku config:add HEROKU=true
  83 + heroku config:add ERRBIT_HOST=some-hostname.example.com
  84 + heroku config:add ERRBIT_EMAIL_FROM=example@example.com
  85 + git push heroku master
  86 +
  87 + 3. Seed the DB (_NOTE_: No bootstrap task is used on Heroku!)
  88 +
  89 + heroku rake db:seed
  90 +
  91 + 4. Enjoy!
  92 +
70 93 TODO
71 94 ----
72 95  
... ...