forked from Keithkeizzah/KEITH-MD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
163 lines (160 loc) · 5.35 KB
/
app.json
File metadata and controls
163 lines (160 loc) · 5.35 KB
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"name": "KEITH-MD",
"description": "This is a simple whatsapp bot built with nodejs to make your WhatsApp enjoyable ",
"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-MD#readme",
"repository": "https://github.com/Keithkeizzah/KEITH-MD.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": false
},
"OWNER_NUMBER": {
"description": "Put any phone numbers you want to be bot owner without + or spaces \",\" Ex: 254748387615, 254796299159 ",
"required": false
},
"OWNER_NAME": {
"description": "add your owner name for the bot",
"value": "",
"required": true
},
"HEROKU_API_KEY": {
"description": "add your heroku api key here",
"required": true
},
"HEROKU_APP_NAME": {
"description": "should match to your app name you placed above copy paste it here for the heroku vars setting",
"required": true
},
"BOTNAME": {
"description": "Enter name for your bot.",
"value": "",
"required": true
},
"PM_PERMIT": {
"description": "type true if you don't want anyone to access your bot in pm.",
"value": "true",
"required": false
},
"EMOJI": {
"description": "Add your favorite emoji ",
"value": "💚",
"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": "true",
"required": false
},
"AUTOBIO": {
"description": "Type true if you want bot to autoupdate it's bio constantly",
"value": "true",
"required": false
},
"ANTIDELETE": {
"description": "Type true if you want bot to undelete messages.",
"value": "true",
"required": false
},
"CHATBOT": {
"description": "Type true if you want bot to automatically reply to messages in your pm .",
"value": "false",
"required": false
},
"GREET": {
"description": "Type true if you want bot to automatically send greet text anytime the bot restats.",
"value": "true",
"required": false
},
"AUTODOWNLOAD_STATUS": {
"description": "Type true if you want bot to automatically download status update .",
"value": "true",
"required": false
},
"GREET_MSG": {
"description": "Set your greet message here for bot to send greet text when GREET us enabled",
"value": "keith is unavailable kindly leave a message",
"required": false
},
"VOICECHATBOT": {
"description": "Type true if you want bot to automatically send voice chat bot message privately ",
"value": "false",
"required": false
},
"ANTICALL_MSG": {
"description": "add your anticall message .this works when anticall is enabled",
"value": "call 🤙 declined successfully",
"required": false
},
"ANTICALL": {
"description": "Type true if you want bot to reject unnecessary calls",
"value": "true",
"required": false
},
"GROUP_CONTROL": {
"description": "Type true if you want the bot to kick those who send link or bad words in group .",
"value": "true",
"required": false
},
"URL": {
"description": "Replace with your image url",
"value": "https://files.catbox.moe/mikdi0.jpg",
"required": true
},
"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"
}
]
}