forked from errbit/errbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
46 lines (46 loc) · 1.37 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"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": {
"ERRBIT_ENFORCE_SSL": "true",
"GEMFILE_RUBY_VERSION": "2.3.3",
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"EMAIL_DELIVERY_METHOD": "smtp",
"SMTP_SERVER": "smtp.sendgrid.net"
},
"environments": {
"test": {
"env": {
"ERRBIT_ENFORCE_SSL": "true",
"GEMFILE_RUBY_VERSION": "2.3.3",
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"EMAIL_DELIVERY_METHOD": "smtp",
"SMTP_SERVER": "smtp.sendgrid.net",
"ERRBIT_ADMIN_EMAIL": {
"description": "Set the demo admin login for ease of PR review",
"value":"[email protected]"
},
"ERRBIT_ADMIN_PASSWORD": {
"description": "Set the demo admin password for ease of PR review",
"value": "demo-admin"
}
},
"scripts": {
"postdeploy": "bundle exec rake errbit:bootstrap"
}
}
},
"addons": [
"mongolab:sandbox",
"scheduler:standard",
"sendgrid:starter"
]
}