-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
99 lines (99 loc) · 2.48 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
{
"name": "hermit-md",
"description": " Whatsapp bot.",
"keywords": [
"whatsapp bot"
],
"repository": "https://github.com/A-d-i-t-h-y-a-n/hermit-md",
"stack": "container",
"env": {
"SESSION_ID": {
"description": "session id",
"required": true,
"value": ""
},
"SUDO": {
"description": "owner number of the bot",
"required": true,
"value": "null"
},
"MODE": {
"description": "mode public or private",
"required": true,
"value": "private"
},
"ALWAYS_ONLINE": {
"description": "show bot number last seen as online",
"required": false,
"value": "false"
},
"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
},
"LOG_MSG": {
"description": "Show whatsapp msgs in log",
"required": false,
"value": "false"
},
"PREFIX": {
"description": "prefix for bot. all so can be null or false multi prefix",
"required": true,
"value": "."
},
"BOT_INFO": {
"description": "botname;ownername;ownernumber;image url",
"required": true,
"value": "ʜᴇʀᴍɪᴛ;ᴀᴅɪᴛʜyᴀɴ;972528277755;https://i.imgur.com/pbNNWfM.jpeg"
},
"STICKER_DATA": {
"description": "sticker package name",
"required": true,
"value": "ʜᴇʀᴍɪᴛ;ᴀᴅɪᴛʜyᴀɴ"
},
"AUDIO_DATA": {
"description": "audio package name",
"required": true,
"value": "ʜᴇʀᴍɪᴛ;ᴀᴅɪᴛʜyᴀɴ;https://i.imgur.com/pbNNWfM.jpeg"
},
"READ_MSG": {
"description": "Read all messages",
"required": false,
"value": "false"
},
"AUTO_STATUS_VIEW": {
"description": "automatic read status",
"required": false,
"value": "false"
},
"REJECT_CALL": {
"description": "automatic reject call",
"required": false,
"value": "false"
},
"WARN": {
"description": "warn count",
"required": false,
"value": "4"
},
"SONG_THUMBNAIL": {
"description": "show youtube video thumbnail in song cmd",
"required": false,
"value": "false"
},
"ERROR_MESSAGE": {
"description": "get error alert",
"required": false,
"value": "true"
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
]
}