-
Notifications
You must be signed in to change notification settings - Fork 343
/
app.json
145 lines (139 loc) · 4.7 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "KEITH-MD",
"description": "This is a simple whatsapp bot built with nodejs and baileys with MD support.",
"keywords": [
"bot",
"whatsapp",
"keith",
"whatsapp-stickers",
"anime",
"whatsapp-bot",
"whatsapp-sticker-bot",
"whatsapp-botto",
"baileys",
"baileys-md",
"md-bot"
],
"website": "https://github.com/Keithkeizzah/KEITH-MD2#readme",
"repository": "https://github.com/Keithkeizzah/KEITH-MD2.git",
"logo": "https://i.imgur.com/dAtHp2k.jpeg",
"success_url": "/",
"env": {
"PREFIX": {
"description": "choose your prefix for keith. To prevent errors and confusion you must set a prefix",
"value": ".",
"required": true
},
"DEV": {
"description": "Put any phone numbers you want to be bot owner without + or spaces \",\" Ex: 254748387615, 254796299159 ",
"required": false
},
"API": {
"description": "add your heroku api key here to be able to control config varses directly in your pm ",
"required": true
},
"APPNAME": {
"description": "repeat your heroku appname here",
"required": true
},
"ANTICALL": {
"description": "Type true if you want the bot to decline unnecessary calls ",
"value": "true",
"required": false
},
"ANTI_BAD_WORD": {
"description": "Type true if you want bot to automatically detect bad words and remove or block in your pm ",
"value": "true",
"required": false
},
"CODE": {
"description": "Enter your country code without +. Example: 254 for Kenya. This will allow bot to detect and remove foreigners if commanded",
"value": "254",
"required": true
},
"STICKER_AUTHOR": {
"description": "Put your sticker author data",
"value": "Keith",
"required": false
},
"STICKER_PACKNAME": {
"description": "Put your sticker packname data",
"value": "Keizzah",
"required": false
},
"BOTNAME": {
"description": "Enter name for your bot,,you can change this.",
"value": "𝐊𝐄𝐈𝐓𝐇-𝐌𝐃",
"required": false
},
"GC_PRESENCE": {
"description": "Type true if you want bot to show fake recording/typing in group chats.",
"required": false
},
"SESSION": {
"description": "Paste the session id that you received in whatsapp after linking the bot. It's used for authentication.",
"required": true
},
"AUTOVIEW_STATUS": {
"description": "Type true if you want bot to automatically read all status update",
"value": "true",
"required": false
},
"EVENTS": {
"description": "choose whether to allow bot to detect events in groups such as promote, demote, remove and add. If set to true bot will send welcome/goodbye messages and signal when somebody is promoted or demoted.",
"value": "false",
"required": true
},
"AUTOBIO": {
"description": "Type true if you want bot to autoupdate it's bio constantly",
"value": "true",
"required": false
},
"ANTITAG": {
"description": "Type true if you want bot to automatically remove members who tagall or use hidetag.",
"value": "true",
"required": false
},
"ANTILINK": {
"description": "Type true if you want bot to automatically remove members who send link.",
"value": "true",
"required": false
},
"ANTIVIEWONCE": {
"description": "Type true if you want bot to automatically read viewonce media",
"value": "true",
"required": false
},
"AUTOLIKE_STATUS": {
"description": "Type true if you want bot to automatically like status updates, this will only work if AUTOVIEW_STATUS is true.",
"value": "true",
"required": false
},
"AUTOREAD": {
"description": "Put here true if you want bot to automatically bluetick messages in private.",
"value": "false",
"required": false
},
"WA_PRESENCE": {
"description": "This is your WhatsApp Presence Status: Here's how to set it up: Type *typing* if you want bot to show typing..., Type *recording* if you want bot to show recording..., Type *online* if you want bot to be always online, Leave this field blank if you want bot to show your actual presence.",
"value": "typing",
"required": false
},
"MODE": {
"description": "Type private if you don't want other people to use the bot or public if you want everyone to access.",
"value": "public",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/clhuang/heroku-buildpack-webp-binaries.git"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
}
]
}