-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
39 lines (39 loc) · 1.18 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
{
"name": "slack-notion-unfurl-bot",
"description": "slack x notion",
"repository": "https://github.com/trackrecords/slack-notion-unfurl-bot",
"keywords": [
"Slack",
"Slack API",
"Bolt",
"TypeScript",
"Heroku",
"Notion",
"Notion API"
],
"env": {
"NOTION_TOKEN": {
"description": "Notion personal token FYI: https://www.notion.so/How-to-get-your-token-d7a3421b851f406380fb9ff429cd5d47",
"value": "xxxx"
},
"SLACK_SIGNING_SECRET": {
"description": "Slack Signing Secret - https://api.slack.com/apps",
"value": "cda6e9cbf46a********************"
},
"SLACK_BOT_TOKEN": {
"description": "Slack App Bot Token - https://api.slack.com/apps",
"value": "xoxb-************-************-************************"
},
"SLACK_APP_TOKEN": {
"description": "Slack App Socket Token - https://api.slack.com/apps",
"value": "xapp-************-************-************************"
},
"PORT": {
"description": "listen port number. if you use socket mode, this is not necessary.",
"value": "5000",
"required": false
},
"YARN_PRODUCTION": false
},
"image": "heroku/nodejs"
}