-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
43 lines (43 loc) · 1.17 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
{
"name": "Localizr",
"description": "Localization manager.",
"keywords": [
"locale",
"localizer",
"localization",
"key-string"
],
"website": "https://github.com/michaelhenry/localizr",
"repository": "https://github.com/michaelhenry/localizr",
"env": {
"DJANGO_SETTINGS_MODULE": "project.settings.production",
"DJANGO_SECRET_KEY": {
"generator": "secret"
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"value": "1"
},
"ADMIN_USERNAME": {
"description": "The default username of the admin."
},
"ADMIN_EMAIL": {
"description": "The default email of the admin. This can be change later on the admin page."
},
"ADMIN_PASSWORD": {
"description": "The password of the admin. This can be change later on the admin page."
},
"ALLOWED_HOSTS": {
"description": "The name of the host. eg. appname.herokuapp.com or can be multiple hosts by separating with comma. eg. domain.com,appname.herokuapp.com"
}
},
"image": "heroku/python",
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
]
}