-
Notifications
You must be signed in to change notification settings - Fork 10
/
app.json
38 lines (38 loc) · 1.21 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
{
"name": "Chathooks",
"description": "Webhook proxy for team chat",
"keywords": ["glip"],
"website": "https://github.com/grokify/chathooks",
"repository": "https://github.com/grokify/chathooks",
"addons": [
"papertrail:choklad"
],
"formation": {
"web": {
"quantity": 1,
"size": "Free"
}
},
"env": {
"CHATHOOKS_HOME_URL":{
"description": "Homepage for project, for homepage rendering only.",
"value": "https://<myProject>.herokuapp.com",
"required": false
},
"CHATHOOKS_WEBHOOK_URL":{
"description": "Webhook URL for project, for homepage rendering only.",
"value": "https://<myProject>.herokuapp.com/hook",
"required": false
},
"CHATHOOKS_TOKENS": {
"description": "Comma-delimited list of secret tokens for validation",
"default": "demo account - do not use for production",
"required": false
},
"CHATHOOKS_ENGINE": {
"description": "HTTP server engine to use, e.g. 'fasthttp' or 'nethttp'.",
"value": "fasthttp",
"required": false
}
}
}