forked from fastmonkeys/sentry-on-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
52 lines (52 loc) · 1.64 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
47
48
49
50
51
52
{
"name": "Sentry",
"description": "Sentry is a realtime event logging and aggregation platform",
"repository": "https://github.com/fastmonkeys/sentry-on-heroku",
"website": "http://getsentry.com",
"keywords": [
"logging",
"error"
],
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis:premium-0",
"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
},
"AWS_ACCESS_KEY_ID": {
"description": "Your Amazon Web Services access key",
"value": "",
"required": false
},
"AWS_SECRET_ACCESS_KEY": {
"description": "Your Amazon Web Services secret access key",
"value": "",
"required": false
},
"AWS_STORAGE_BUCKET_NAME": {
"description": "Your Amazon Web Services storage bucket name",
"value": "",
"required": false
}
},
"scripts": {
"postdeploy": "sentry --config=sentry.conf.py upgrade --noinput"
}
}