forked from Giftedmaurice/dreaded-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
126 lines (121 loc) · 4.4 KB
/
Copy pathapp.json
File metadata and controls
126 lines (121 loc) · 4.4 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
{
"name": "dreaded-bot@V.2.0.0",
"description": "This is a simple whatsapp bot built with nodejs and baileys with MD support.",
"keywords": ["bot","whatsapp","dreaded","whatsapp-stickers","anime","whatsapp-bot","whatsapp-sticker-bot","whatsapp-bot","baileys","baileys-md","md-bot"],
"website": "https://github.com/Giftedmaurice/dreaded-bot#readme",
"repository": "https://github.com/Giftedmaurice/dreaded-bot.git",
"logo": "https://telegra.ph/file/54efddccf41281ad7ec51.jpg",
"success_url": "/",
"env": {
"PREFIX": {
"description": "Prefix of dreaded bot Ex: . , / , # , & etc. Put any symbol",
"value": ".",
"required": true
},
"DEV": {
"description": "Put any phone numbers you want to be bot owner without + or spaces \",\" Ex: 254728782591",
"value": "254728782591",
"required": true
},
"NOT_OWNER_MSG": {
"description": "Put a message that the bot will send if a parameter that requires only owner user is violated. Example: Owner only",
"required": false
},
"BOT_ADMIN_MSG": {
"description": "Put a message that the bot will send if a parameter that requires bot to be admin is violated. Example: Bot is not admin!",
"required": false
},
"ADMIN_MSG": {
"description": "Put a message that the bot will send if a parameter that requires only owner user is violated. Example: Only admins are allowed to use this command",
"required": false
},
"BAD_WORD": {
"description": "List words separated witj commas that will be considered as bad and will trigger bot to kick. Example: fuck, pussy, hoe",
"required": false
},
"BAD_WORD_KICK": {
"description": "Put here TRUE if you want the bot to automatically kick group members using words that you have listed as bad",
"required": false
},
"GROUP_ONLY_MSG": {
"description": "Put a message that the bot will send if a parameter that works in group chats only is violated. Example: This command will work in groups only",
"value": "",
"required": false
},
"AUTOREAD": {
"description": "Put here TRUE if you want bot to automatically bluetick messages in private chats and groups",
"required": false
},
"AUTOVIEW": {
"description": "Input TRUE if you want bot to automatically read status update",
"required": false
},
"WA_PRESENCE": {
"description": "Input either recording or typing or none. This enables bot to simulate typing or recording or nothing.",
"value": "recording",
"required": false
},
"ANTILINK": {
"description": "Input TRUE if you want bot to kick link senders",
"required": false
},
"ANTILINK_ALL": {
"description": "Input TRUE if you want bot to kick users sending any links.",
"required": false
},
"ANTIBOT": {
"description": "Input TRUE if you want bot to kick other bots from group",
"required": true
},
"WELCOME": {
"description": "Input TRUE if you want bot to send welcome message to new members.",
"required": false
},
"ANTIFOREIGN": {
"description": "Input TRUE if you want bot to kick non-kenyan numbers joining.",
"required": false
},
"AUTOBIO": {
"description": "Input TRUE if you want bot to autoupdate its about with current time and date.",
"required": false
},
"APP_NAME": {
"description": "Input your app name that you put above.",
"required": true
},
"STICKER_AUTHOR": {
"description": "Input sticker data for author",
"value": "GiftedTech",
"required": true
},
"STICKER_PACKNAME": {
"description": "Input sticker data for packname",
"value": "DreadedBot",
"required": true
},
"GPT_INBOX": {
"description": "Input TRUE if you want bot to autoreply inbox messages using openai API.",
"required": false
},
"MENU_TYPE": {
"description": "Input either VIDEO, or IMAGE or TEXT. This will allow bot to display different dynamic menu types",
"value": "VIDEO",
"required": false
},
"AI": {
"description": "Put your OpenAI API key here. This will allow AI features to work correctly. This key starts with sk-",
"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"
}
]
}