forked from doccano/doccano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
43 lines (43 loc) · 1.39 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": "doccano",
"description": "Open source text annotation tool for machine learning practitioner.",
"keywords": ["Python", "Machine Learning", "Annotation"],
"website": "https://doccano.herokuapp.com/",
"repository": "https://github.com/doccano/doccano",
"logo": "https://github.com/doccano/doccano/wiki/images/doccano.png",
"success_url": "/",
"env": {
"ADMIN_USERNAME": {
"description": "The user name for the admin account."
},
"ADMIN_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"
},
"GOOGLE_TRACKING_ID": {
"description": "Google Analytics tracking id.",
"required": false,
"value": ""
},
"DJANGO_SETTINGS_MODULE": {
"description": "Django Settings Module. You don't have to change this.",
"required": true,
"value": "config.settings.heroku"
}
},
"stack": "container",
"scripts": {
"postdeploy": "sh /doccano/tools/heroku.sh"
},
"addons": [
{
"plan": "heroku-postgresql:mini"
}
]
}