-
Notifications
You must be signed in to change notification settings - Fork 954
/
app.json
115 lines (115 loc) · 3.62 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
{
"name": "Zokou-2.0",
"description": "bot whatsapp développé par djalega++",
"keywords": [
"bot",
"node",
"baileys",
"whatsapp"
],
"logo": "https://raw.githubusercontent.com/djalega8000/Zokou-2.0/main/Zokou.jpg",
"repository": "https://github.com/djalega8000/Zokou-2.0",
"succes_url": "/",
"stack": "container",
"env": {
"PREFIX": {
"description": "choose your prefix of bot",
"value": "#",
"required": true
},
"AUTO_READ_STATUS": {
"description": "Your contact status will be read automatically(type yes to active or no to deactive ; don't write in capital letter)",
"value": "yes",
"required": false
},
"AUTO_DOWNLOAD_STATUS": {
"description": "Your contact status will be download automatically and send to you(type yes to active or no to deactive ; don't write in capital letter)",
"value": "yes",
"required": false
},
"PM_PERMIT": {
"description": "Other user can't use your bot in pm (type yes to active or no to deactive ; don't write in capital letter)",
"value": "no",
"required": false
},
"BOT_NAME": {
"description": "put A name for your bot",
"value": "Zokou-MD",
"required": false
},
"BOT_MENU_LINKS": {
"description": "add one or many link for your bot menu ; eg : url1,url2,url3.....",
"value": "https://i.pinimg.com/736x/0a/70/6f/0a706f90d6a1fb39919aedfbb7fdd8d3.jpg",
"required": false
},
"PUBLIC_MODE": {
"description": "type yes to put your bot on public mode or no to put it on private mod",
"value": "yes",
"required": false
},
"HEROKU_APY_KEY": {
"description": "insert your heroku api-key (this is optionnal)",
"required": false
},
"HEROKU_APP_NAME": {
"description": "insert your heroku APP NAME (this is optionnal)",
"required": false
},
"SESSION_ID": {
"description": "put your session ID , the code you receive after scanning Qr code",
"value": "",
"required": true
},
"OWNER_NAME": {
"desc": "Your Name",
"required": false,
"value": "Djalega++"
},
"NUMERO_OWNER": {
"desc": "Your number , dont put '+' and put you area code(exemple of togo '228')",
"required": false,
"value": "22891733300"
},
"WARN_COUNT": {
"desc": "this is the limit of warn for warning commandes",
"required": false,
"value": "3"
},
"STARTING_BOT_MESSAGE": {
"description": "if you don't want startting-bot-message put no else put yes",
"required": true,
"value": "yes"
},
"PRESENCE": {
"description": "Mark your presence: 1 to indicate that you are online even if you are not. 2 to indicate that you are currently typing a message. 3 to indicate that you are currently recording an audio. Or leave the field blank to indicate your real state.",
"value": "",
"required": false
},
"PM_CHATBOT": {
"description": "Put yes if you want the bot to automatically respond to messages in private",
"required": false,
"value": "no"
},
"ANTI_VIEW_ONCE": {
"description": "Put yes if you want to receive in pm all view once content",
"required": false,
"value": "no"
},
"ANTI_COMMAND_SPAM" : {
"description":"active a cooldown of 10sec to every-user after a command to avoid spamming unless owner and mods",
"required":false,
"value" :"no"
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "standard-2x"
}
},
"addons": [
{
"plan": "heroku-postgresql:essential-0"
}
]
}