-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.json
45 lines (45 loc) · 1.05 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
{
"name": "linebot-video",
"description": "Line Bot for Video Editing",
"repository": "https://github.com/kkdai/linebot-video",
"keywords": [
"Line",
"go",
"static"
],
"buildpacks": [
{
"url": "https://github.com/kr/heroku-buildpack-go.git"
},
{
"url": "heroku/go"
}
],
"env": {
"ChannelAccessToken": {
"description": "LINE OA Channel Access Token",
"required": true
},
"ChannelSecret": {
"description": "LINE OA Channel Secret",
"required": true
},
"GCS_PROJECT_ID": {
"description": "Google Cloud Storage Project ID",
"required": true
},
"GCS_BUCKET_NAME": {
"description": "Google Cloud Storage Bucket Name",
"required": true
},
"GOOGLE_APPLICATION_CREDENTIALS": {
"description": "It is the fix env for GCP SDK (DO NOT CHANGE IT)",
"required": true,
"value": "google-credentials.json"
},
"GOOGLE_CREDENTIALS": {
"description": "Google credentials json content here.",
"required": true
}
}
}