forked from Prince-Mendiratta/BotsApp
-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
79 lines (79 loc) · 2.61 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
{
"name": "BotsApp",
"description": "The most user friendly and easy to use WhatsApp bot.",
"logo": "https://i.imgur.com/xw9lULI.jpg",
"keywords": [
"Whatsapp",
"WhatsApp bot",
"userbot",
"BotsApp",
"nodejs",
"WhatsApp Multi Device",
"WhatsApp Multi Device bot"
],
"repository": "https://github.com/Prince-Mendiratta/BotsApp",
"website": "https://mybotsapp.com",
"success_url": "",
"stack": "container",
"env": {
"STRING_SESSION": {
"description": "Your BotsApp session. Can be obtained via website or running npm start locally.",
"value": "",
"required": true
},
"HEROKU": {
"description": "Is the bot running on heroku? If you're seeing this, then probably it's true.",
"value": "true",
"required": false
},
"PREFIX": {
"description": "Regex pattern for the prefix. Leave default if you are not sure about this.",
"value": "^[.?!]",
"required": false
},
"COUNTRY_CODE": {
"description": "The default country code to be used in modules.",
"value": "91",
"required": false
},
"OCR_API_KEY": {
"description": "API key for using OCR (Optical Character Recognition) module. You can obtain this for free from https://ocr.space/",
"value": "",
"required": false
},
"WEATHER_API_KEY": {
"description": "API key for using weather module. You can obtain this for free from https://openweathermap.org/",
"value": "",
"required": false
},
"DEBUG": {
"description": "Set this to true to see detailed logs.",
"value": "false",
"required": false
},
"WORK_TYPE": {
"description": "Which mode should the bot work in? In private mode, only the bot number and sudo users can use the bot.",
"value": "private",
"required": false
},
"SUDO": {
"description": "List down the phone numbers in international format, separated by commas, who should have permission to use the bot. For example -> 917838xxxxxx,1875xxxxxxxx",
"value": "",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "13"
}
}
],
"formation": {
"botsapp": {
"quantity": 1,
"size": "free"
}
}
}