-
Notifications
You must be signed in to change notification settings - Fork 17
/
app.json
36 lines (36 loc) · 907 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
{
"name": "suministrospr",
"website": "https://suministrospr.com",
"repository": "https://github.com/code4puertorico/suministrospr",
"success_url": "/",
"stack": "container",
"scripts": {
"postdeploy": "./bin/heroku-postdeploy"
},
"env": {
"DJANGO_SECRET_KEY": {
"description": "A secret key used to provide cryptographic signing.",
"generator": "secret"
},
"DJANGO_ALLOWED_HOSTS": {
"description": "Comma-separated list of the host/domain names that this site can serve.",
"value": "*"
},
"ENVIRONMENT": {
"description": "Which Django Configuration to use.",
"value": "production"
},
"CACHE_MIXIN_TIMEOUT": {
"description": "Custom full response cache timeout in seconds.",
"value": "86400"
}
},
"addons": [
{
"plan": "heroku-redis"
},
{
"plan": "heroku-postgresql"
}
]
}