-
Notifications
You must be signed in to change notification settings - Fork 11
/
app.json
36 lines (36 loc) · 1.3 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
{
"name": "drf-cached-instances",
"description": "Cached instances for Django REST Framework",
"repository": "https://github.com/jwhitlock/drf-cached-instances",
"keywords": ["python", "django", "drf-cached-instances"],
"env": {
"ALLOWED_HOSTS": {
"description": "Comma-separated list of hostnames to allow",
"value": "*"
},
"DJANGO_DEBUG": {
"description": "Setting to 1 enables debug features, such as tracebacks",
"value": "0"
},
"EXTRA_INSTALLED_APPS": {
"description": "Comma-separated list of apps to add to INSTALLED_APPS",
"value": "gunicorn"
},
"SECRET_KEY": {
"description": "Used for cyptographic signing, and should be set to a unique, unpredictable value.",
"generator": "secret"
},
"SECURE_PROXY_SSL_HEADER": {
"description": "HTTP header/value combo that signifies a request is secure",
"value": "HTTP_X_FORWARDED_PROTO,https"
},
"STATIC_ROOT": {
"description": "Base path for collected static files",
"value": "staticfiles"
}
},
"scripts": {
"postdeploy": "./manage.py syncdb --noinput && ./manage.py migrate"
},
"success_url": "/",
}