-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathapp.json
91 lines (91 loc) · 2.28 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
{
"name": "Sarkar-MD",
"description": "Best Whatsapp bot made by Bandaheali",
"logo": "https://telegra.ph/file/fd124f7e9271111c3bcc1.jpg",
"keywords": [
"whatsapp bot",
"automation",
"Sarkar-MD"
],
"repository": "",
"stack": "heroku-24",
"env": {
"SESSION_ID": {
"description": "Paste here session ID that you have scanned",
"required": true,
"value": ""
},
"MODE": {
"description": "Enter 'true' for public mode, 'no' for private mode",
"required": true,
"value": "public"
},
"OWNER_NUMBER": {
"description": "Enter the owner's phone number with country code (e.g., +1234567890)",
"required": true,
"value": "+923000000000"
},
"OWNER_NAME": {
"description": "Enter the owner's name",
"required": true,
"value": "Bandaheali"
},
"AUTO_STATUS_SEEN": {
"description": "Enter 'true' for autoview status, 'no' to disable",
"required": false,
"value": "true"
},
"AUTO_READ": {
"description": "Enter 'true' for autoread messages, 'no' to disable",
"required": false,
"value": "true"
},
"AUTO_TYPING": {
"description": "Enter 'true' for auto typing, 'no' to disable",
"required": false,
"value": "true"
},
"AUTO_RECORDING": {
"description": "Enter 'true' to show recording audio, 'no' to disable",
"required": false,
"value": "no"
},
"ALWAYS_ONLINE": {
"description": "Enter 'true' to show the bot as always online, 'no' to disable",
"required": false,
"value": "no"
},
"AUTO_BLOCK": {
"description": "Enter 'true' to auto-block numbers starting with 212, 'no' to disable",
"required": false,
"value": "no"
},
"REJECT_CALL": {
"description": "Enter 'true' to reject calls, 'no' to disable",
"required": false,
"value": "no"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "https://github.com/clhuang/heroku-buildpack-webp-binaries.git"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "basic"
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
]
}