forked from flybaseio/sentry-on-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
37 lines (37 loc) · 1.21 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
{
"name": "Sentry",
"description": "Sentry is a realtime event logging and aggregation platform",
"repository": "https://github.com/flybaseio/sentry-on-heroku",
"website": "http://getsentry.com",
"keywords": [
"logging",
"error"
],
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis:hobby-dev",
"sendgrid:starter"
],
"env": {
"SECRET_KEY": {
"description": "A secret key for a particular Django installation. This is used to provide cryptographic signing, and should be set to a unique, unpredictable value.",
"generator": "secret"
},
"SENTRY_URL_PREFIX": {
"description": "Your applications URL, no trailing slash",
"value": "https://YOURAPPNAME.herokuapp.com"
},
"SERVER_EMAIL": {
"description": "Reply to address for outgoing email",
"value": "root@localhost"
},
"SENTRY_ADMIN_EMAIL": {
"description": "The administrative email for this installation. Note: This will be reported back to getsentry.com as the point of contact. See the beacon documentation for more information.",
"value": "",
"required": false
}
},
"scripts": {
"postdeploy": "sentry --config=sentry.conf.py upgrade --noinput"
}
}