-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
56 lines (56 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "El Géo Paso - DEV",
"description": "A simple web application to display charts about French jobs offers in GIS.",
"image": "heroku/python",
"repository": "https://github.com/guts/elgeopaso/",
"website": "https://elgeopaso.georezo.net/",
"keywords": [
"python",
"django",
"GIS",
"georezo",
"job offers"
],
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"options": {
"version": "12"
}
},
{
"plan": "papertrail:choklad"
}
],
"buildpacks": [
{
"url": "heroku/python"
}
],
"env": {
"DJANGO_ALLOWED_HOSTS": {
"description": "Host/domain names that this Django site can serve",
"value": ".herokuapp.com"
},
"DJANGO_ADMIN_URL": {
"description": "URL to access administration panel.",
"value": "admin"
},
"DJANGO_DEBUG": {
"description": "Debug or not debug",
"value": "0"
},
"DJANGO_SECRET_KEY": {
"description": "The secret key for the Django application.",
"generator": "secret"
},
"DJANGO_SETTINGS_MODULE": {
"description": "Project settings to use.",
"generator": "elgeopaso.settings.production"
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"value": "4"
}
}
}