-
Notifications
You must be signed in to change notification settings - Fork 45
/
app.json
59 lines (59 loc) · 1.48 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "OSSChat",
"description": "OSSChat for HeroKu",
"repository": "https://github.com/kaiyuanshe/OSSChat",
"logo": "https://wechaty.github.io/wechaty/images/wechaty-icon.png",
"keywords": [
"wechaty",
"heroku",
"deploy",
"button"
],
"website": "https://github.com/kaiyuanshe/OSSChat",
"success_url": "/",
"env": {
"WECHATY_TOKEN": {
"description": "Chatie.io Cloud Token",
"required": false
},
"WECHATY_LOG": {
"description": "Wechaty Log Level",
"required": false
},
"WECHATY_PUPPET": {
"description": "Wechaty Puppet Name, Default: `wechaty-puppet-puppeteer`. Learn more at: <https://github.com/Chatie/wechaty/wiki/Puppet>",
"required": false
},
"WECHATY_NAME": {
"description": "Wechaty Name Used to Store Memory",
"generator": "secret"
},
"AWS_ACCESS_KEY_ID": {
"description": "Amazon S3 accessKeyId for Bot Memory",
"required": false
},
"AWS_SECRET_ACCESS_KEY": {
"description": "Amazon S3 secretAccessKey for Bot Memory",
"required": false
},
"AWS_REGION": {
"description": "Amazon S3 Region for Bot Memory",
"required": false
},
"AWS_S3_BUCKET": {
"description": "Amazon S3 Bucket for Bot Memory",
"required": false
}
},
"engines": {
"node": "16"
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-google-chrome"
},
{
"url": "heroku/nodejs"
}
]
}