-
Notifications
You must be signed in to change notification settings - Fork 177
/
app.json
96 lines (96 loc) · 2.77 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
{
"name": "𝙹𝙾𝚎𝚕 𝙱𝚘𝚝",
"description": " 𝚆𝚑𝚊𝚝𝚜𝙰𝚙𝚙 𝚋𝚘𝚝 𝚌𝚛𝚎𝚊𝚝𝚎𝚍 𝚋𝚢 𝙻𝙾𝚛𝚍 𝙹𝙾𝚎𝚕.",
"keywords": [
"whatsapp bot"
],
"logo":"https://files.catbox.moe/5a2euh.jpg",
"repository": "https://github.com/Ethix-Xsid/Ethix-MD",
"stack": "container",
"env": {
"SESSION_ID": {
"description": "your session id",
"required": true,
"value": ""
},
"MODE": {
"description": "mode public or self",
"required": true,
"value": "public"
},
"AUTO_STATUS_SEEN": {
"description": "make it true if you want bot to view status",
"required": false,
"value": "true"
},
"AUTOLIKE_STATUS": {
"description": "Make it true if you want bot to read and like status else leave blank",
"required": false,
"value": "true"
},
"AUTOLIKE_EMOJI": {
"description": "Input your custom status like emoji else leave blank to use default => 💚",
"required": false,
"value": "💚"
},
"AUTO_REPLY_STATUS": {
"description": "make it true if you want the bot to send message after viewing status else leave blank",
"required": false,
"value": ""
},
"SUDO_NUMBERS": {
"description": "Put Sudo Numbers separated by comma Here. Sudos are limited to owner commands else leave blank",
"required": false,
"value": "255714595078,255781144539,255767570963"
},
"AUTO_READ": {
"description": "make it true if you want bot to read message",
"required": false,
"value": ""
},
"AUTO_TYPING": {
"description": "make it true if you want bot to show typing",
"required": false,
"value": ""
},
"AUTO_RECORDING": {
"description": "make it true if you want bot to show recording audio",
"required": false,
"value": ""
},
"ALWAYS_ONLINE": {
"description": "make it true if you want bot to show always online",
"required": false,
"value": "true"
},
"AUTO_BLOCK": {
"description": "make it true if you want bot to auto block only 212 numbers",
"required": false,
"value": ""
},
"REJECT_CALL": {
"description": "make it true if you want to reject call",
"required": false,
"value": ""
},
"PREFIX": {
"description": "Your Bot Prefix default (.)",
"required": false,
"value": ""
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/DuckyTeam/heroku-buildpack-imagemagick.git"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "https://github.com/clhuang/heroku-buildpack-webp-binaries.git"
}
]
}