-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
42 lines (42 loc) · 1.03 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
{
"name": "github-app-chatie",
"description": "Chatie Bot",
"repository": "https://github.com/chatie/github-app-chatie",
"logo": "https://wechaty.github.io/wechaty/images/wechaty-icon.png",
"keywords": [
"chatie",
"heroku",
"deploy",
"button",
"github",
"github app"
],
"website": "https://github.com/chatie/github-app-chatie",
"success_url": "/",
"env": {
"WEBHOOK_PROXY_URL": {
"description": "Webhook Proxy URL",
"required": true
},
"APP_ID": {
"description": "the ID of the app, which you can get from the app settings page https://github.com/settings/apps",
"required": true
},
"PRIVATE_KEY": {
"description": "the contents of the private key you downloaded after creating the app.",
"required": true
},
"WEBHOOK_SECRET": {
"description": "the Webhook Secret that you generated when you created the app.",
"required": true
}
},
"engines": {
"node": "10"
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}