forked from lyfe00011/levanter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
139 lines (138 loc) · 3.56 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "[email protected]",
"description": "",
"keywords": ["noedjs"],
"success_url": "/",
"env": {
"ALWAYS_ONLINE": {
"description": "show bot number last seen as online",
"required": false,
"value": "false"
},
"LOG_MSG": {
"description": "Show whatsapp msgs in log",
"required": false,
"value": "false"
},
"SUDO": {
"description": "admin",
"required": false,
"value": ""
},
"PREFIX": {
"description": "prefix, check for more",
"required": false,
"value": "."
},
"SESSION_ID": {
"description": "session id",
"required": true,
"value": ""
},
"STICKER_PACKNAME": {
"description": "sticker pack info",
"required": false,
"value": "❤️,LyFE"
},
"HEROKU_APP_NAME": {
"description": "Heroku app name, same as above entered.",
"required": true
},
"HEROKU_API_KEY": {
"description": "Heroku account api key, https://dashboard.heroku.com/account",
"required": true
},
"RMBG_KEY": {
"description": "API key from remove.bg, required for plugin rmbg",
"required": false,
"value": "null"
},
"LANGUAG": {
"description": "Default Language for tts or trt",
"required": false,
"value": "en"
},
"WARN_LIMIT": {
"description": "Maximum number of wanings to a person.",
"required": false,
"value": "3"
},
"FORCE_LOGOUT": {
"description": "In Some scenario have to logout web, Only such case make this true and back to false after logout.",
"required": false,
"value": "false"
},
"DISABLE_BOT": {
"description": "Example : jid,jid,... where bot not works in both ways.",
"required": false,
"value": "null"
},
"ANTILINK_MSG": {
"description": "Message send when antilink and action is kick.",
"required": false,
"value": "_Antilink Detected &mention kicked_"
},
"ANTISPAM_MSG": {
"description": "Message send when antispam.",
"required": false,
"value": "_Antispam Detected &mention kicked_"
},
"ANTIWORDS_MSG": {
"description": "Message send when antiword.",
"required": false,
"value": "_Antiword Detected &mention kicked_"
},
"ANTIWORDS": {
"description": "words that not allowed in chats.",
"required": false,
"value": "word1,word2,word3"
},
"SS_TOKEN": {
"description": "token from https://app.screenshotapi.net/dashboard",
"required": false,
"value": ""
},
"REJECT_CALL": {
"description": "auto reject call, if set as true",
"required": false,
"value": "false"
},
"AUTO_STATUS_VIEW": {
"description": "view others status",
"required": false,
"value": "false"
},
"SEND_READ": {
"description": "send blue tick",
"required": false,
"value": "false"
},
"AJOIN": {
"description": "Accept Group join request(Group privacy)",
"required": false,
"value": "true"
},
"PERSONAL_MESSAGE": {
"description": "Send a Welcome message on personal chat",
"required": false,
"value": "null"
},
"DISABLE_START_MESSAGE": {
"description": "Disable start Message",
"required": false,
"value": "false"
}
},
"addons": [
{
"plan": "heroku-postgresql:basic"
}
],
"buildpacks": [{ "url": "https://github.com/heroku/heroku-buildpack-nodejs#latest" }],
"formation": {
"web": {
"quantity": 1,
"size": "basic"
}
}
}