forked from kkdai/linebot-receipt-gemini
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
37 lines (37 loc) · 780 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
37
{
"name": "linebot receipt helper",
"description": "LINEBot with Gemini Pro with Firebase",
"repository": "https://github.com/kkdai/linebot-receipt-gemini",
"keywords": [
"python",
"linebot",
"gemini",
"firebase"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python.git"
},
{
"url": "heroku/python"
}
],
"env": {
"GEMINI_API_KEY": {
"description": "GEMINI API KEY",
"required": true
},
"ChannelAccessToken": {
"description": "Channel Access Token",
"required": true
},
"ChannelSecret": {
"description": "Channel Secret",
"required": true
},
"FIREBASE_URL": {
"description": "FIREBASE URL",
"required": true
}
}
}