forked from errbit/errbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
32 lines (32 loc) · 1.22 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "errbit",
"description": "The open source error catcher that's Airbrake API compliant",
"keywords": ["productivity", "tools", "error tracking"],
"repository": "https://github.com/errbit/errbit",
"env": {
"BUNDLE_WITHOUT": "development",
"ERRBIT_ENFORCE_SSL": "true",
"MONGODB_URI": {
"description": "The connection URI to your MongoDB Cluster. If you don't have one, you can create a free plan at https://cloud.mongodb.com . Follow the Heroky deployment docs on the Errbit repo for more information on obtaining this string.",
"required": true
},
"GEMFILE_RUBY_VERSION": "2.7.6",
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"HEROKU_APP_NAME": {
"description": "Have Heroku export the current app name for review apps, see https://devcenter.heroku.com/articles/github-integration-review-apps#heroku_app_name-and-heroku_parent_app_name",
"required": true
},
"EMAIL_DELIVERY_METHOD": "smtp",
"SMTP_SERVER": "smtp.sendgrid.net"
},
"scripts": {
"postdeploy": "bundle exec rake errbit:bootstrap"
},
"addons": [
"scheduler:standard",
"sendgrid:starter"
]
}