-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathapp.json
More file actions
124 lines (124 loc) · 3.25 KB
/
app.json
File metadata and controls
124 lines (124 loc) · 3.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "ef-prime-md-ultra",
"description": "⚡ EF-PRIME-MD ULTRA - Advanced WhatsApp Bot Using Baileys Library with Quantum Core",
"repository": "https://github.com/efkidgamerdev /EF-PRIME-MD-ULTRA-",
"logo": "https://telegra.ph/file/fe4843a1261fc414542c4.jpg",
"stack": "container",
"keywords": [
"whatsapp-bot",
"multi-device",
"bot",
"whatsapp",
"baileys",
"ef-prime",
"quantum-core"
],
"env": {
"SESSION_ID": {
"description": "Add your Session ID here if you want to connect via session download",
"required": false,
"value": ""
},
"OWNER_NUMBER": {
"description": "List of owner numbers (comma-separated), without '+' sign",
"required": true,
"value": "265993702468"
},
"BOT_NAME": {
"description": "Display name of your bot",
"required": false,
"value": "EF-PRIME-MD-ULTRA"
},
"BOT_NUMBER": {
"description": "WhatsApp phone number for pairing code (without '+' sign)",
"required": true,
"value": "265993702468"
},
"PACKNAME": {
"description": "Sticker pack name",
"required": false,
"value": "⚡ EF-PRIME-MD ULTRA"
},
"AUTHOR": {
"description": "Author name for sticker metadata",
"required": false,
"value": "💎 Frankkaumbadev"
},
"PREFIX": {
"description": "Allowed command prefixes (comma-separated, no spaces)",
"required": true,
"value": "⚡,+,!,.,#,$"
},
"TIME_ZONE": {
"description": "Your Time Zone (e.g., Africa/Malawi, UTC)",
"required": false,
"value": "UTC"
},
"PAIRING_CODE": {
"description": "Set to 'false' to disable pairing code method",
"required": false,
"value": "true"
},
"ALWAYS_ONLINE": {
"description": "Set to 'on' to make the bot always appear online",
"required": false,
"value": "on"
},
"PRIME_GROUP": {
"description": "Prime WhatsApp group link",
"required": false,
"value": "https://chat.whatsapp.com/B6yhKpqsUCu9K2QHxvxD2W?mode=ac_t"
},
"MONGODB_URI": {
"description": "MongoDB connection string for database (optional)",
"required": false,
"value": ""
},
"HKEY": {
"description": "Heroku API key - Get one from https://dashboard.heroku.com/account",
"required": false,
"value": ""
},
"HAPP": {
"description": "Heroku app name (same as the app name above)",
"required": false,
"value": ""
},
"API_KEY": {
"description": "Prime API key for advanced features",
"required": false,
"value": ""
},
"GEMINI_API_KEY": {
"description": "Google Gemini AI API key for AI features",
"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"
}
},
"addons": [
{
"plan": "heroku-postgresql:mini",
"as": "DATABASE"
}
]
}