forked from Toxic1239/Queen-RiasV3_
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
43 lines (43 loc) · 1.06 KB
/
app.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "Rias Gremory X",
"description": "WhatsApp Bot using Node.js and Baileys",
"repository": "https://github.com/Toxic1239/Queen-RiasV3_",
"keywords": ["whatsapp", "bot", "baileys", "nodejs"],
"buildpacks": [
{ "url": "heroku/nodejs" }
],
"env": {
"PREFIX": {
"description": "Command prefix for the bot.",
"value": "."
},
"OWNER_NAME": {
"description": "Bot owner's name.",
"required": true
},
"OWNER_NUMBER": {
"description": "Owner's phone number (with country code).",
"required": true
},
"MODE": {
"description": "Bot mode (public/private).",
"value": "public"
},
"BOT_NAME": {
"description": "Name of the bot.",
"value": "Rias Gremory X"
},
"SESSION_ID": {
"description": "Base64 session ID for WhatsApp authentication.",
"required": true
},
"PORT": {
"description": "Port for the server.",
"value": "3000"
},
"TIME_ZONE": {
"description": "Timezone for the bot.",
"value": "Africa/Lagos"
}
}
}