-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathapp.json
More file actions
81 lines (81 loc) · 2.25 KB
/
app.json
File metadata and controls
81 lines (81 loc) · 2.25 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
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
{
"name": "star-xd",
"description": "Ultra performance multi-device WhatsApp bot by Malvin Tech",
"keywords": ["whatsapp-bot", "baileys", "star-xd"],
"repository": "https://github.com/XdKing2/star-xd",
"stack": "container",
"env": {
"SESSION_ID": {
"description": "Your session ID (get it by running the bot locally first)",
"required": true,
"value": ""
},
"OWNER_NUMBER": {
"description": "Your WhatsApp number with country code (e.g. 263701234567)",
"required": true,
"value": "263000000000"
},
"MONGO_URL": {
"description": "MongoDB URL for persistent storage (recommended for Heroku)",
"required": false,
"value": ""
},
"POSTGRES_URL": {
"description": "PostgreSQL URL for persistent storage",
"required": false,
"value": ""
},
"MYSQL_URL": {
"description": "MySQL URL for persistent storage",
"required": false,
"value": ""
},
"BOT_NAME": {
"description": "Your bot name",
"required": false,
"value": "sᴛᴀʀ-xᴅ"
},
"BOT_OWNER": {
"description": "Owner display name",
"required": false,
"value": "ᴍʀ xᴅᴋɪɴɢ"
},
"PREFIXES": {
"description": "Command prefixes separated by comma (e.g. .,!,/)",
"required": false,
"value": "."
},
"PACKNAME": {
"description": "Sticker pack name",
"required": false,
"value": "sᴛᴀʀ-xᴅ"
},
"COMMAND_MODE": {
"description": "Bot mode: public or private",
"required": false,
"value": "public"
},
"TIMEZONE": {
"description": "Your timezone (e.g. Africa/Harare, America/New_York)",
"required": false,
"value": "Africa/Harare"
},
"REMOVEBG_KEY": {
"description": "Remove.bg API key for background removal",
"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" }
],
"formation": {
"web": {
"quantity": 1,
"size": "basic"
}
}
}