-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathapp.json
More file actions
66 lines (51 loc) · 1.39 KB
/
app.json
File metadata and controls
66 lines (51 loc) · 1.39 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
{
"name": "BEN-BOT",
"description": "Javascript WhatsApp bot made by Nothing",
"logo": "https://files.catbox.moe/6vrc2s.jpg",
"keywords": ["BEN-BOT"],
"success_url": "/",
"stack": "container",
"env": {
"SESSION_ID": {
"description": "Put the session-id here.",
"required": true,
"value": ""
},
"PREFIX": {
"description": "paste your bot prefix note! Don't apply null prefix.",
"required": false,
"value": "."
},
"MODE": {
"description": "select your bot work type public-private-inbox-group.",
"required": false,
"value": "public"
},
"OWNER_NUMBER": {
"description": "put the owner number for bot.",
"required": false,
"value": "93744215959"
},
"ANTI_DELETE": {
"description": "for on antidelete in Whatsapp bot use true.",
"required": false,
"value": "true"
},
"ANTI_LINK": {
"description": "Make it true if you want bot auto remove group link.",
"required": true,
"value": "false"
},
"WELCOME": {
"description": "make it true if want goodbye and welcome message in groups.",
"required": false,
"value": "false"
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs.git"
}
],
"stack": "heroku-24"
}