-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
28 lines (28 loc) · 838 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
{
"name": "Prox",
"description": "Share anonymous confessions on Slack",
"logo": "https://files.ifvictr.com/2020/04/prox.png",
"repository": "https://github.com/ifvictr/prox",
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"SLACK_BOT_TOKEN": {
"description": "Bot user’s OAuth access token. Usually starts with `xoxb-`."
},
"SLACK_SIGNING_SECRET": {
"description": "Signing secret from Slack used to confirm source of incoming messages."
},
"SLACK_POST_CHANNEL_ID": {
"description": "Channel where approved posts should be posted."
},
"SLACK_REVIEW_CHANNEL_ID": {
"description": "Channel where submissions should be sent for review."
},
"SLACK_STREAM_CHANNEL_ID": {
"description": "Channel where events should be logged."
}
}
}