-
Notifications
You must be signed in to change notification settings - Fork 193
/
app.json
51 lines (51 loc) · 1.36 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
{
"name": "Queen-AI",
"description": "Queen-AI Multi Language WhatsApp AI Chat Bot",
"repository": "https://github.com/DarkWinzo/Queen-AI",
"logo": "https://i.ibb.co/zbMKwKZ/20230425-161348.jpg",
"keywords": ["multi-device","Queen-AI","DarkWinzo"],
"stack": "container",
"addons": [{
"plan": "heroku-postgresql"
}],
"env": {
"HEROKU_APP_NAME": {
"description": "Heroku app name, same as above entered",
"required": true
},
"HEROKU_API_KEY": {
"description": "Heroku account api key, https://dashboard.heroku.com/account",
"required": true
},
"SESSION_ID": {
"description": "Queen-AI Session ID",
"required": true
},
"OWNER_NAME": {
"description": "Add the owner name here and if you want to use the default name then just leave it",
"required": false,
"value": "DarkWinzo"
},
"OWNER_NUMBER": {
"description": "Add the owner number here",
"required": true,
"value": ""
},
"LANGUAGE": {
"description": "Enter bot working language EN / SI / ML / UR / HI",
"required": true,
"value": "EN"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "https://github.com/clhuang/heroku-buildpack-webp-binaries.git"
}
]
}