forked from franceking1/Flash-Md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
139 lines (131 loc) · 3.7 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":"FLASH-MD",
"description":"An easy and simple WhatsApp bot developed by France King",
"keywords":[
"bot",
"node",
"baileys",
"whatsapp"
],
"logo":"https://telegra.ph/file/dfccbf12397757c321ac4.jpg",
"repository":"https://github.com/France-King1/Flash-Md",
"succes_url":"/",
"stack":"container",
"env":{
"PREFIX":
{
"description":"insert a prefix for your bot, be it a letter, a number or a symbol",
"value":".",
"required":true
},
"AUTO_READ_MESSAGES":
{
"description":"Put on if you want the bot to autoread people's messages or else put off",
"value":"off",
"required":false
},
"AUTO_VIEW_STATUS":
{
"description":"Your contact status will be read automatically(type on to activate this feature or type off to deactivate it ; don't write in capital letter)",
"value":"on",
"required":false
}, "AUTO_SAVE_STATUS":
{
"description":"Your contact status will be download automatically and send to you(insert on to activate or no to deactivate ; don't write in capital letter)",
"value":"off",
"required":false
}
,
"PM_PERMIT" :
{
"description":"Other user can't use your bot in pm (type on to activate this feature or type off to deactivat it ; don't write in capital letter)",
"value":"off",
"required":false
}
,
"BOT_MENU_LINKS" : {
"description":"add one or many link for your bot menu separate them with a comma ; eg : url1,url2,url3.....",
"value":"https://telegra.ph/file/dfccbf12397757c321ac4.jpg",
"required":false
},
"BOT_MODE":
{
"description":"type public to put your bot on public mode or private to put it on private mod",
"value":"private",
"required":false
}
,
"HEROKU_API_KEY": {
"description": "insert your heroku api-key (this is optionnal)",
"required" : true
},
"HEROKU_APP_NAME": {
"description": "insert your heroku APP NAME (this is optionnal)",
"required" :false
}
,
"SESSION_ID":
{
"description":"put your session ID , make sure it starts with eyJub2I...",
"value":"",
"required": true
},
"OWNER_NAME":
{
"desc": "Your Name",
"required": false,
"value": "France King"
},
"OWNER_NUMBER":
{
"desc": "Your number , dont put '+' and put you area code(exemple of togo '228')",
"required":false,
"value": "254751284190"
},
"WARN_COUNT":
{
"desc": "this is the limit of warn for warning commandes",
"required": false,
"value": "3"
},
"CHAT_BOT":
{
"desc": "Type on to allow the bot to chat with people who text you or type off if you don't want the bot to chat with people",
"required": false,
"value": "off"
},
"STARTING_MESSAGE":
{
"description": "if you don't want startting-bot-message put no else put yes",
"required": true,
"value": "on"
},
"PRESENCE":{
"description":"Put online to indicate that you are ever online even if you are not. Put typing to indicate that you are currently typing a message. Put recording to indicate that you are currently recording an audio. Or leave the field blank to indicate your real state.",
"value":"",
"required": false
}
},
"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": "standard-2x"
}
},
"addons": [
{
"plan": "heroku-postgresql:essential-0"
}
]
}