This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
/
app.json
98 lines (98 loc) · 2.88 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "Bottus",
"description": " Whatsapp bot.",
"keywords": [
"whatsapp",
"bot"
],
"stack": "container",
"env": {
"ASENA_SESSION": {
"description": "Enter whatsapp web session.",
"required": true
},
"SUDO": {
"description": "Sudo mode, Your number must be an international number. So you should have your number after the country code. Example: 919876543210 (IN)",
"required": false
},
"HANDLERS": {
"description": "enter prefix. Example . or ^[.,!/] for using multiple prefix like .,!/ or LyFE. Using keyword like LyFE will broke list and help command",
"required": true,
"value": "."
},
"SEND_READ": {
"description": "send read receipt.",
"required": false,
"value": "true"
},
"HEROKU": {
"description": "Enable heroku features",
"required": true,
"value": "true"
},
"HEROKU_API_KEY": {
"description": "Enter Heroku API Key.",
"required": true
},
"HEROKU_APP_NAME": {
"description": "Enter Heroku APP Name.",
"required": true
},
"DEBUG": {
"description": "debug",
"required": false,
"value": "false"
},
"CLR_SESSION": {
"description": "Enter true to delete old session.",
"required": false,
"value": "false"
},
"NO_ONLINE": {
"description": "set true to hide online.",
"required": false,
"value": "true"
},
"WARN_COUNT": {
"description": "Maximum no of warns",
"required": false,
"value": "3"
},
"WARN_MSG": {
"description": "Message send while kicking.",
"required": false,
"value": "OK bie"
},
"REMOVEBG_KEY": {
"description": "key from remove.bg",
"required": false,
"value": "null"
},
"LANGUAGE": {
"description": "Enter bot language, example EN for English, ID for Bahasa Indonesia, TR for Turkish",
"value": "EN"
},
"STICKER_PACKNAME": {
"description": "Sticker pack name,author",
"value": "🥰,lyfe00011"
},
"DISABLE_BOT": {
"description": "Disable or Block bot in group/chat.Enter required chat jid separated by ,",
"value": "null"
},
"FIND_API_KEY": {
"description": "key from https://dashboard.audd.io/",
"value": "null"
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
],
"buildpacks": [
{
"url": "heroku-community/apt"
}
]
}