forked from shizothetechie/OREO-BOT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
78 lines (78 loc) · 1.83 KB
/
app.json
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
{
"name": "OREO-BOT",
"description": "WhatsApp Bot Base using Baileys. Written in javascript",
"keywords": [
"whatsapp bot",
"ShizoBot",
"WaBot",
"oreo-bot",
"Termux-WaBot",
"WaBot-Base"
],
"env": {
"DATABASE_URL": {
"description": "your mongodb database url",
"required": false,
"value": ""
},
"SESSION_ID": {
"description": "your session id",
"required": false,
"value": ""
},
"PRIVATE": {
"description": "Set it true if you want to make the bot private, leave Blank for public",
"required": false,
"value": ""
},
"PREFIX": {
"description": "put any one symbol here except @ and + , leave it Blank if you want to use multiple prefix",
"required": false,
"value": ""
},
"BOT_NAME": {
"description": "Name of Your Bot",
"required": false,
"value": ""
},
"OWNER_NAME": {
"description": "owner name of the bot or Your Name",
"required": false,
"value": ""
},
"OWNER_NUMBER": {
"description": "Your number or bot owner number",
"required": false,
"value": ""
},
"MAKER": {
"description": "Maker Text that replace MADE WITH ❤️ BY OREO-BOT",
"required": false,
"value": ""
},
"SOCIAL_MEDIA_LINK": {
"description": "Any one Link of Your Social Media",
"required": false,
"value": ""
},
"GROUP_LINK": {
"description": "Your WhatsApp Group Link",
"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"
}
]
}