-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathapp.json
More file actions
30 lines (30 loc) · 722 Bytes
/
app.json
File metadata and controls
30 lines (30 loc) · 722 Bytes
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
{
"name": "Stream Chat Boilerplate API",
"description": "Stream Chat Boilerplate API",
"logo": "https://avatars3.githubusercontent.com/u/8597527",
"website": "https://getstream.io/chat/",
"repository": "https://github.com/nparsons08/stream-chat-api",
"success_url": "https://getstream.io/chat/",
"keywords": [ "stream", "chat", "api", "express", "oss" ],
"addons": [
{
"plan": "stream:chat-trial",
"as": "STREAM"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"NODE_ENV": {
"description": "Sets the node environment to production.",
"value": "production"
},
"AUTH_KEY": {
"description": "A secret key for verifying API requests.",
"generator": "secret"
}
}
}