-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
45 lines (45 loc) · 1.18 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
{
"name": "DjangoBoilerplate",
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"options": {
"version": "13"
},
"as": "DATABASE"
}
],
"env": {
"DJANGO_DEBUG": "1",
"ALLOWED_HOSTS": {
"description": "Django ALLOWED_HOSTS setting, e.g.: .appname.herokuapp.com"
},
"DJANGO_SECRET_KEY": {
"generator": "secret"
},
"DJANGO_SETTINGS_MODULE": {
"description": "Django settings Python import path",
"value": "settings.production"
},
"DISABLE_COLLECTSTATIC": {
"description": "Disables django collectstatic",
"value": "1"
},
"ENABLE_DJANGO_COLLECTSTATIC": {
"description": "Enables collectstatic to be run by post_compile",
"value": "1"
},
"AUTO_MIGRATION": {
"description": "Setting to run migrate automatically by post_compile",
"value": "1"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
}
]
}