-
Notifications
You must be signed in to change notification settings - Fork 11
/
app.json
60 lines (60 loc) · 1.22 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
57
58
59
60
{
"name": "Combase",
"description": "Open Source & White Label Customer Support Chat – Powered by Stream",
"keywords": [ "Customer Support", "Stream", "Open Source", "Chat", "White Label" ],
"website": "https://comba.se/",
"repository": "https://github.com/GetStream/combase",
"logo": "https://i.imgur.com/jwPM769.png",
"success_url": "https://github.com/GetStream/combase",
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"image": "heroku/nodejs",
"addons": [
{
"plan": "stream:chat-trial",
"as": "STREAM"
},
{
"plan": "mongolab:sandbox",
"as": "MONGODB"
},
{
"plan": "rediscloud:30",
"as": "REDIS"
},
{
"plan": "algoliasearch:free",
"as": "ALGOLIASEARCH"
},
{
"plan": "timber-logging:free",
"as": "TIMBER_LOGGING"
},
{
"plan": "cloudinary:starter",
"as": "CLOUDINARY"
}
],
"buildpacks": [
{
"url": "https://github.com/lstoll/heroku-buildpack-monorepo"
},
{
"url": "heroku/nodejs"
}
],
"env": {
"AUTH_SECRET": {
"description": "A secret key for verifying the integrity of signed JWTs.",
"generator": "secret"
},
"APP_BASE": {
"description": "Absolute path to API in monorepo (default = /api).",
"value": "api/"
}
}
}