-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathapp.json
36 lines (36 loc) · 827 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
33
34
35
36
{
"name": "LINE Bot Chat Summarizer by ChatGPT",
"description": "Using ChatGPT API to auto summarize your Group Chat",
"repository": "https://github.com/kkdai/LINE-Bot-ChatSummarizer",
"keywords": [
"Line",
"go",
"static"
],
"buildpacks": [
{
"url": "https://github.com/kr/heroku-buildpack-go.git"
},
{
"url": "heroku/go"
}
],
"env": {
"ChatGptToken": {
"description": "ChatGPT Access Token",
"required": true
},
"ChannelAccessToken": {
"description": "Channel Access Token",
"required": true
},
"ChannelSecret": {
"description": "Channel Secret",
"required": true
},
"DATABASE_URL": {
"description": "PostGresSQL DB url, leave empty if you want to use memory DB.",
"required": false
}
}
}