forked from zpurcey/new-teamtemp
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapp.json
More file actions
45 lines (45 loc) · 1.26 KB
/
app.json
File metadata and controls
45 lines (45 loc) · 1.26 KB
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": "new-teamtemp",
"description": "Survey and summarise team happiness",
"repository": "https://github.com/rloomans/new-teamtemp",
"website": "https://github.com/rloomans/new-teamtemp",
"logo": "https://raw.githubusercontent.com/rloomans/new-teamtemp/main/teamtemp/static/favicon.ico",
"keywords": ["team", "django", "metrics"],
"scripts": {
},
"env": {
"DJANGO_DEBUG": {
"description": "Whether debuging should be on for Django. WARNING: should be turned off for production sites.",
"value": "True"
},
"DJANGO_SETTINGS_MODULE": {
"value": "teamtemp.settings.heroku",
"required": true
},
"TEAM_TEMP_CRON_PIN": {
"description": "Secret PIN for accessing the cron URL",
"required": true,
"generator": "secret"
},
"TEAM_TEMP_CRON_URL": {
"description": "The URL to initiate the CRON task",
"value": "https://<Your Heroku app name here>.herokuapp.com/cron/",
"required": false
},
"TEAMTEMP_SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
}
},
"formation": {
},
"addons": [
"heroku-postgresql",
"scheduler"
],
"buildpacks": [
{
"url": "heroku/python"
}
]
}