forked from HumanSignal/label-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
56 lines (56 loc) · 1.58 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": "Factcheck-it Annotate",
"description": "Annotate fact-checking articles on the cloud.",
"keywords": ["data annotation", "data labeling"],
"website": "https://annotate.factcheck-it.org",
"repository": "https://github.com/factcheck-it/factcheck-it",
"logo": "https://github.com/factcheck-it/label-studio/blob/master/images/factcheck-it_icon.svg",
"stack": "container",
"env": {
"LABEL_STUDIO_ONE_CLICK_DEPLOY": {
"description": "Label Studio One Click Deploy Environmental Flag",
"value": "1",
"required": false
},
"DISABLE_SIGNUP_WITHOUT_LINK": {
"description": "Disable signup for users without invite link",
"value": "1",
"required": false
},
"USERNAME": {
"description": "Username(email) for default user",
"value": "",
"required": false
},
"PASSWORD": {
"description": "Password for default user",
"value": "",
"required": false
},
"DJANGO_DB": {
"description": "Type of database for Django",
"value": "default",
"required": false
},
"GOOGLE_CREDENTIALS": {
"description": "Content of the Google Cloud OAuth Json file",
"value": "",
"required": false
},
"GOOGLE_APPLICATION_CREDENTIALS": {
"description": "Path to generated Google credentials file",
"value": "google-credentials.json",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
],
"buildpacks": [
{
"url": "https://github.com/buyersight/heroku-google-application-credentials-buildpack.git"
}
]
}