-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
50 lines (50 loc) · 1.15 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
{
"name": "Activity Bot",
"description": "The smart bot that notify event",
"keywords": [
"linebot",
"golang",
"nextjs"
],
"website": "https://github.com/CyCTW/Activity-bot",
"repository": "https://github.com/CyCTW/Activity-bot",
"env": {
"CHANNEL_ACCESS_TOKEN": {
"description": "Line message api access token"
},
"CHANNEL_SECRET": {
"description": "Line message api secret"
},
"LIFF_ID": {
"description": "Line liff id"
},
"LIFF_URL": {
"description": "Line liff url"
},
"LINE_LOGIN_CHANNEL_ID": {
"description": "Line login channe id"
},
"LINE_NOTIFY_CLIENT_ID": {
"description": "Line notify client id"
},
"LINE_NOTIFY_CLIENT_SECRET": {
"description": "Line Notify client secret"
},
"LINE_NOTIFY_REDIRECT_URI": {
"description": "Line Notify redirect uri"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/go"
}
]
}