-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
58 lines (58 loc) · 1.53 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "yattoite",
"description": "Slack bot that responds on my behalf on holidays using freee人事労務",
"repository": "https://github.com/Doarakko/yattoite",
"keywords": [
"bot",
"slack bot",
"markov chain",
"freee人事労務"
],
"env": {
"APP_BASE": {
"description": "Do not change this value.",
"value": "app"
},
"SLACK_APP_TOKEN": {
"description": "Enter your slack app token.",
"value": "xapp-aaaa"
},
"SLACK_BOT_TOKEN": {
"description": "Enter your slack bot token.",
"value": "xoxb-bbbb"
},
"SLACK_USER_ID": {
"description": "Enter your slack user id.",
"value": "ABCD01234"
},
"FREEE_CLIENT_ID": {
"description": "Enter your freee client id.",
"value": "cccc"
},
"FREEE_CLIENT_SECRET": {
"description": "Enter your freee client secret.",
"value": "dddd"
},
"FREEE_CODE": {
"description": "Enter your freee code.",
"value": "eeee"
}
},
"buildpacks": [
{
"url": "https://github.com/lstoll/heroku-buildpack-monorepo"
},
{
"url": "https://github.com/heroku/heroku-buildpack-python"
}
],
"addons": [
"heroku-postgresql"
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}