-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
32 lines (32 loc) · 960 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
29
30
31
32
{
"name": "Anzu LINE Scheduler Bot",
"description": "A LINE chatbot to schedule and remind you of your tasks",
"repository": "https://github.com/lauslim12/Anzu",
"logo": "https://cdn.rawgit.com/heroku/node-js-getting-started/main/public/node.svg",
"success_url": "/",
"website": "https://lauslim12.github.io/Anzu/",
"keywords": [
"node",
"express",
"heroku",
"line",
"chatbot",
"scheduler",
"helper"
],
"image": "heroku/nodejs",
"env": {
"ADMIN_USER_ID": {
"description": "Your LINE user ID (not LINE ID) to act as an administrator"
},
"CHANNEL_ACCESS_TOKEN": {
"description": "Your LINE Developers's access token to access your channel"
},
"CHANNEL_SECRET": {
"desciption": "Your LINE Developers's secret to authorize your application"
},
"DATABASE": {
"description": "Your resolved MongoDB connection string. See the format in the documentation"
}
}
}