-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.json
41 lines (41 loc) · 1.24 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
{
"name": "Sentry",
"description": "Sentry 7 is a realtime event logging and aggregation platform",
"repository": "https://github.com/alex88/sentry-heroku",
"website": "http://getsentry.com",
"logo": "https://raw.githubusercontent.com/getsentry/sentry/master/docs/_static/logo.png",
"keywords": [
"logging",
"error",
"exception",
"monitoring"
],
"addons": [
"heroku-postgresql:hobby-dev",
"sendgrid:starter",
"newrelic:wayne",
"rediscloud:30"
],
"env": {
"DJANGO_SETTINGS_MODULE": {
"description": "The Django settings module to use",
"value": "sentry.conf"
},
"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"
},
"ALLOW_REGISTRATION": {
"description": "Let new users register, can be True or False",
"value": "True"
},
"SENDGRID_MAIL_FROM": {
"description": "Send emails using this address",
"value": "root@localhost"
}
}
}