forked from Fortunatusmokaya/DREADED-GPT-AI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
132 lines (126 loc) · 4.27 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
{
"name": "DREADED BOT",
"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-botto",
"baileys",
"baileys-md",
"md-bot"
],
"website": "https://github.com/Fortunatusmokaya/DREADED-GPT-AI#readme",
"repository": "https://github.com/Fortunatusmokaya/DREADED-GPT-AI.git",
"logo": "https://telegra.ph/file/d6dab955fbaa42fce2280.jpg",
"success_url": "/",
"env": {
"PREFIX": {
"description": "Prefix of dreaded bot Ex: . , / , # , & etc. Put any symbol",
"required": true
},
"DEV": {
"description": "Put any phone numbers you want to be bot owner without + or spaces \",\" Ex: 254114018035, 254741889898 ",
"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": true
},
"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": true
},
"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": true
},
"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",
"required": true
},
"AUTOREAD": {
"description": "Put here TRUE if you want bot to automatically bluetick messages in private chats",
"required": true
},
"AUTOVIEW": {
"description": "Input true if you want bot to automatically read status update",
"required": false
},
"WA_PRESENCE": {
"description": "Input either recording or typing. This enables bot to simulate typing or 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": false
},
"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",
"required": false
},
"STICKER_PACKNAME": {
"description": "Input sticker data for packname",
"required": false
},
"GPT_INBOX": {
"description": "Input TRUE if you want bot to autoreply inbox messages using openai API.",
"required": false
},
"MENU_TYPE": {
"description": "Input either VIDEO, LINK or IMAGE. This will allow bot to display different dynamic menu types",
"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"
}
]
}