-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathsubzero.json
More file actions
44 lines (41 loc) · 1.14 KB
/
subzero.json
File metadata and controls
44 lines (41 loc) · 1.14 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
{
"name": "EF-PRIME-ULTRA",
"description": "A high-performance WhatsApp automation bot.",
"logo": "https://files.catbox.moe/70f7eb.png",
"docs": "https://frankkaumba.gamer.gd/sessionid.html",
"keywords": ["whatsapp-bot", "automation", "nodejs"],
"success_url": "/",
"repository": "https://github.com/yourusername/your-bot",
"stack": "heroku-24",
"env": {
"SESSION_ID": {
"description": "Secure authentication session string used to connect the bot to WhatsApp Web.",
"required": true,
"value": ""
},
"OWNER_NUMBER": {
"description": "Primary administrator WhatsApp number in international format (e.g. 263719647303).",
"required": true,
"value": ""
},
"BOT_NAME": {
"description": "Display name of the bot as seen in chats and command responses.",
"required": false,
"value": "MY-BOT"
},
"MONGO_URL": {
"description": "MongoDB connection URI for persistent storage.",
"required": false,
"value": ""
}
},
"buildpacks": [
{ "url": "heroku/nodejs" }
],
"formation": {
"web": {
"quantity": 1,
"size": "basic"
}
}
}