Commit 6fbd119d63429bbce9398fa37c58a9f546131a09

Authored by Luis Ezcurdia
1 parent b6d7d465
Exists in master and in 1 other branch production

json file for heroku deploy

Showing 2 changed files with 24 additions and 0 deletions   Show diff stats
app.json 0 → 100644
... ... @@ -0,0 +1,20 @@
  1 +{
  2 + "name": "errbit",
  3 + "description": "The open source error catcher that's Airbrake API compliant",
  4 + "keywords": ["productivity", "tools","error tracking"],
  5 + "repository": "https://github.com/3zcurdia/errbit",
  6 + "scripts": {
  7 + "postdeploy": "bundle exec rake errbit:bootstrap"
  8 + },
  9 + "env": {
  10 + "GEMFILE_RUBY_VERSION": "2.2.0",
  11 + "SECRET_KEY_BASE": {
  12 + "generator": "secret"
  13 + }
  14 + },
  15 + "addons": [
  16 + "mongolab:sandbox",
  17 + "scheduler:standard",
  18 + "sendgrid:starter"
  19 + ]
  20 +}
0 21 \ No newline at end of file
... ...
docs/deployment/heroku.md
... ... @@ -69,3 +69,7 @@ heroku run rake errbit:db:clear_resolved
69 69 ```bash
70 70 heroku addons:add deployhooks:http --url="http://YOUR_ERRBIT_HOST/deploys.txt?api_key=YOUR_API_KEY"
71 71 ```
  72 +
  73 +## Or Just be lazy
  74 +
  75 +[![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy?template=https://github.com/3zcurdia/errbit/tree/heroku-button)
... ...