forked from HumanSignal/label-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
44 lines (44 loc) · 1.09 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
{
"name": "Label Studio",
"description": "Multi-type data labeling, annotation and exploration tool",
"keywords": [
"data annotation",
"data labeling"
],
"website": "https://labelstud.io",
"repository": "https://github.com/heartexlabs/label-studio",
"logo": "https://labelstud.io/images/opossum/heartex_icon_opossum_green.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": "0",
"required": false
},
"USERNAME": {
"description": "Username(email) for default user",
"value": "",
"required": false
},
"PASSWORD": {
"description": "Password for default user",
"value": "",
"required": false
}
},
"build": {
"skip": true
},
"hooks": {
"prebuild": {
"commands": [
"docker build -f Dockerfile.cloudrun -t $IMAGE_URL ."
]
}
}
}