forked from seratch/slack-weather-radar-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
41 lines (41 loc) · 1.54 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
{
"name": "Slack Weather Radar Map",
"description": "Slack App backend which returns weather radar informaton in Japan.",
"repository": "https://github.com/seratch/slack-weather-radar-map",
"keywords": [
"Slack",
"Slack API",
"Bolt",
"TypeScript",
"Heroku",
"Yahoo! JAPAN APIs",
"Weather Radar Map"
],
"env": {
"SLASH_COMMAND_NAME": {
"description": "Name the command and set the same one in Slack App configuration",
"value": "amesh"
},
"TZ": {
"description": "This app is supposed to be usd in Japan Standard Time",
"value": "Asia/Tokyo"
},
"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-************-************-************************"
},
"YAHOO_JAPAN_API_CLIENT_ID": {
"description": "Yahoo! JAPAN Application ID - https://e.developer.yahoo.co.jp/dashboard/",
"value": "cda6e9cbf46a********************"
},
"YAHOO_JAPAN_API_MAP_MODE": {
"description": "Yahoo! JAPAN Static Map API (map,photo,map-b1,hd,hybrid) - https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/static.html#request-param",
"value": "map"
}
},
"image": "heroku/nodejs"
}