-
Notifications
You must be signed in to change notification settings - Fork 7.3k
/
app.json
96 lines (95 loc) · 3.02 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": "Deploy",
"description": "Wa Bot.",
"keywords": [
"whatsapp",
"bot"
],
"repository": "https://github.com/raganork-ind/whatsapp-bot",
"stack": "container",
"env": {
"HANDLERS": {
"description": "Prefix of commands. Can be also false",
"required": true,
"value":".,"
},
"ANTILINK_WARN": {
"description": "Groups for antilink (JIDS)",
"required": false,
"value":"jid,jid"
},
"READ_MESSAGES": {
"description": "Bot will read all messages. Can be also false",
"required": true,
"value":"false"
},
"READ_COMMAND": {
"description": "Bot will read all commands (blue tick). Can be also false",
"required": true,
"value":"true"
},
"HEROKU_API_KEY": {
"description": "For updating bot and setting vars remotely",
"required": true,
"value":""
},
"HEROKU_APP_NAME": {
"description": "Exact name which you gave at the top",
"required": true,
"value":""
},
"STICKER_DATA": {
"description": "Name of stickers created using bot. Can also split using ;",
"required": true,
"value":"ʀᴀɢᷨᴀͦɴͭᴏʀᴋ"
},
"CHATBOT": {
"description": "AI chatbot",
"required": true,
"value":"off"
},
"BOT_NAME": {
"description": "Name of AI chatbot",
"required": true,
"value":"Raganork"
},
"BOT_INFO": {
"description": "Name, image, owner and other details in menu (seperate with comma)",
"required": true,
"value":"Raganork,SKL11,91123456789,https://i.imgur.com/B2YWSLk.jpg"
},
"AUDIO_DATA": {
"description": "Name of audio (take) name;name;image(url)",
"required": true,
"value":"ʀᴀɢᷨᴀͦɴͭᴏʀᴋ;ʀᴀɢᷨᴀͦɴͭᴏʀᴋ;https://2.img-dpreview.com/files/p/E~C1000x0S4000x4000T1200x1200~articles/3925134721/0266554465.jpeg"
},
"MODE": {
"description": "Private or public",
"required": true,
"value":"private"
},
"SUDO": {
"description": "These numbers can control your bot. seperate with commas",
"required": false,
"value":"919074309534"
},
"ALIVE": {
"description": "Alive message {image/link}, {sender} can also be used",
"required": false,
"value":"{pp} Active since {uptime}\n User:{sender}"
},
"SESSION": {
"description": "Your MD session",
"required": true
}
},
"addons": [{
"plan": "heroku-postgresql"
}],
"buildpacks": [{
"url": "heroku-community/apt"
},
{
"url": "https://github.com/clhuang/heroku-buildpack-webp-binaries.git"
}]
}