forked from Supinic/supibot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-default.json
48 lines (48 loc) · 1.38 KB
/
config-default.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
{
"usageGuide": [
"This file is designed to have a bare-metal working fork of Supibot.",
"If you want to configure your fork further, copy this file as \"config.json\" and edit as desired.",
"Do not add the new file to Git.",
"If no such \"custom configuration\" file exists, this default will be used instead.",
"The \"disableAll\" flag overrides the black/whitelists completely.",
"If that flag is \"false\" and both the arrays are empty, it is assumed all modules should be loaded.",
"",
"For commands, the \"bannedCombinations\" array contains a list of commands that cannot be executed together in one meta-command execution.",
"E.g. ['fish', 'translate'] would prevent those two commands from being executed in one pipe or alias combination"
],
"modules": {
"chat-modules": {
"disableAll": true,
"blacklist": [],
"whitelist": []
},
"commands": {
"disableAll": false,
"blacklist": [],
"whitelist": [
"debug",
"help",
"ping",
"pipe",
"reload"
],
"bannedCombinations": []
},
"crons": {
"disableAll": true,
"blacklist": [],
"whitelist": []
},
"gots": {
"disableAll": false,
"blacklist": [
"Kraken",
"RaspberryPi4",
"Supinic",
"TwitchGQL",
"V5"
],
"whitelist": []
}
}
}