-
Notifications
You must be signed in to change notification settings - Fork 13
/
app.json
71 lines (71 loc) · 2.03 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "LNL DB",
"description": "Manages our events.",
"keywords": [
"productivity",
"HTML5"
],
"website": "https://lnl.wpi.edu/",
"repository": "https://github.com/WPI-LNL/lnldb/",
"success_url": "/list",
"scripts": {
"postdeploy": "python manage.py loaddata fixtures/*.json"
},
"env": {
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"ALLOWED_HOSTS": {
"description": "A lists of hostnames that the server will respond to. A good starter is 'yourappname.herokuapp.com'"
},
"CCC_PASS": {
"description": "The WPI CCC password. LDAP returns info more reliably with this.",
"required": false
},
"CAS_SERVER_URL": {
"description": "The CAS server to use, if any. Note that many CAS servers run on a whitelist.",
"required": false
},
"AWS_ACCESS_KEY_ID": {
"description": "(Required for file storage) AWS S3 creds: id",
"required": false
},
"AWS_SECRET_ACCESS_KEY": {
"description": "(Required for file storage) AWS S3 creds: password",
"required": false
},
"AWS_STORAGE_BUCKET_NAME": {
"description": "(Required for file storage) AWS S3 creds: bucket",
"required": false
},
"AWS_S3_REGION_NAME": {
"description": "(Required for file storage) AWS S3 creds: region name",
"required": false
},
"GA_ID": {
"description": "Google analytics ID",
"required": false
},
"USE_WHITENOISE": {
"description": "Host static files via django. Unless you're running a separate server in front of this (cough, userweb), you want this. ",
"value": "True"
},
"DEBUG": {
"description": "Sets debug mode on/off for the site. If enabled, insecure (but soooo convenient...)",
"value": "True"
}
},
"addons": [
"sendgrid",
"sentry",
"heroku-postgresql"
],
"environments": {
"test": {
"scripts": {
"test": "python manage.py test"
}
}
}
}