-
Notifications
You must be signed in to change notification settings - Fork 774
Expand file tree
/
Copy pathapp.json
More file actions
52 lines (49 loc) · 1.55 KB
/
app.json
File metadata and controls
52 lines (49 loc) · 1.55 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
{
"name": "DML-MD",
"description": "⚡ A lightning-fast WhatsApp bot with multi-device support, built on Node.js & Baileys.",
"website": "https://github.com/MLILA17/DML-MD#readme",
"repository": "https://github.com/MLILA17/DML-MD.git",
"logo": "https://files.catbox.moe/juhq1l.jpg",
"success_url": "/",
"keywords": ["whatsapp-bot", "baileys", "nodejs", "heroku", "dml-md"],
"scripts": {
"postdeploy": "echo '🚀 🅳🅼🅻-🅼🅳 has been successfully deployed!'"
},
"build": {
"languages": ["nodejs"]
},
"env": {
"SESSION": {
"description": "🔑 Required – Your WhatsApp session ID (generated after linking the bot).",
"required": true
},
"HEROKU_APP_NAME": {
"description": "Optional – The Heroku app name (needed for updating the bot).",
"required": false
},
"HEROKU_API_KEY": {
"description": "Optional – Your Heroku API key (only needed for updating the bot).",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql",
"description": "🗃️ Free PostgreSQL database for storing bot data."
}
],
"buildpacks": [
{
"url": "heroku/nodejs",
"description": "📦 Node.js runtime for running the bot."
},
{
"url": "https://github.com/clhuang/heroku-buildpack-webp-binaries.git",
"description": "🖼️ WebP support for image processing."
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest",
"description": "🎥 FFmpeg for audio/video processing."
}
]
}