forked from DemocracyLab/CivicTechExchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
49 lines (49 loc) · 849 Bytes
/
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
{
"name": "CivicTechExchange",
"scripts": {
},
"env": {
"AWS_ACCESS_KEY_ID": {
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"required": true
},
"EMAIL_HOST_PASSWORD": {
"required": true
},
"S3_BUCKET": {
"required": true
},
"DJANGO_DEBUG": {
"required": true
},
"ADMIN_EMAIL": {
"required": true
},
"DJANGO_SECRET_KEY": {
"required": true,
"generator": "secret"
},
"PROTOCOL_DOMAIN": {
"required": true
},
"DISABLE_COLLECTSTATIC": {
"description": "Don't run python manage.py collectstatic --noinput on deploy",
"value": "1"
}
},
"formation": {
"web": {
"quantity": 1
}
},
"addons": [
"heroku-postgresql"
],
"buildpacks": [
{
"url": "heroku/python"
}
]
}