-
Notifications
You must be signed in to change notification settings - Fork 430
/
app.json
61 lines (61 loc) · 1.9 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
60
61
{
"name": "Queen Anita V4",
"description": "A WhatsApp Bot Created By David Cyril",
"logo": "https://telegra.ph/file/f6230a0cb5b118fa01561.jpg",
"keywords": ["bot", "WhatsApp", "JavaScript"],
"success_url": "/",
"stack": "heroku-24",
"env": {
"SESSION_ID": {
"description": "Put your SESSION_ID here.",
"value": ""
},
"PREFIX": {
"description": "Enter your desired prefix for bot. You can set `all | . | .!*`",
"value": "."
},
"AUTO_REACT": {
"description": "Set true to auto-react to messages.",
"value": "false",
"required": false
},
"WELCOME": {
"description": "Put 'false' or 'true' to enable or disable WELCOME.",
"value": "false",
"required": false
},
"AUTO_VIEW_STATUS": {
"description": "Auto-view saved WhatsApp statuses.",
"value": "true",
"required": false
},
"CHATBOT": {
"description": "Set to true if you want your bot to autoreply messages.",
"value": "false",
"required": false
},
"AUTO_READ_MESSAGES": {
"description": "Set to true if you want the bot to read all messages.",
"value": "false",
"required": false
},
"OWNER": {
"description": "The phone numbers of the users who you want to be admin for the bot (should be in international format without + and multiple numbers must be separated by a comma \",\").",
"value": "2349066528353"
},
"PUBLIC": {
"description": "Worktype of your bot. Use public or private. If it is private, then only the bot number can use it. If public, then everyone can use it.",
"value": "public"
},
"AUTHOR": {
"description": "Put Sticker Pack Author_Name.",
"value": "𝐃𝐀𝐕𝐈𝐃 𝐂𝐘𝐑𝐈𝐋",
"required": false
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs.git"
}
]
}