forked from cohere-ai/cohere-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
34 lines (34 loc) · 792 Bytes
/
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
{
"name": "toolkit-deploy",
"env": {
"DATABASE_URL": {
"description": "URL for your Postgres database"
},
"COHERE_API_KEY": {
"description": "Your Cohere API key"
},
"INSTALL_COMMUNITY_DEPS": {
"description": "Whether to enable community features true/false"
}
},
"hooks": {
"prebuild": {
"commands": [
"gcloud auth configure-docker"
]
},
"postcreate": {
"commands": [
"chmod +x ./gcp_postcreate_hook.sh",
"./gcp_postcreate_hook.sh"
]
}
},
"options": {
"allow-unauthenticated": true,
"memory": "12288Mi",
"cpu": "4",
"port": 4000,
"max-instances": 2
}
}