-
Notifications
You must be signed in to change notification settings - Fork 21
/
app.json
55 lines (55 loc) · 1.66 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
{
"name": "piaf",
"description": "Outil d'annotation de texte open source pour effectuer la tâche de question-réponse",
"keywords": ["Python", "Machine Learning", "Annotation"],
"website": "https://guillim.github.io/piaf-site/",
"repository": "https://github.com/etalab/piaf",
"logo": "https://github.com/guillim/piaf-site/blob/master/img/Screen%20Shot%202019-07-11%20at%2017.43.21.png?raw=true",
"success_url": "/",
"env": {
"ADMIN_USER_NAME": {
"description": "The user name for the admin account."
},
"ADMIN_CONTACT_EMAIL": {
"description": "The contact email address for the admin account."
},
"ADMIN_PASSWORD": {
"description": "The password for the admin account."
},
"SECRET_KEY": {
"description": "The value to use as the Django secret key.",
"generator": "secret"
},
"MATOMO_SITE_ID": {
"description": "Matomo tracking id.",
"required": false,
"value": ""
},
"DEBUG": {
"description": "Debug mode or not.",
"required": false,
"value": "False"
},
"ALLOW_SIGNUP": {
"description": "Allow users to signup themselves or not",
"required": false,
"value": "True"
}
},
"scripts": {
"postdeploy": "sh tools/heroku.sh deploy"
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
}
]
}