-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDEFAULT_CONFIG.json
More file actions
74 lines (58 loc) · 3.42 KB
/
DEFAULT_CONFIG.json
File metadata and controls
74 lines (58 loc) · 3.42 KB
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
{
"discord.token": "<empty>",
"_comment": "Parameters about logging.",
"logging.hidden-groups": [],
"logging.show-time": true,
"logging.group-colors": {},
"_comment": "Master users. When they'll execute a command through Discord's Chat, not any verification about permissions will be done. They'll also be able to do .execute-admin to execute commands like it was executed in the terminal.",
"commands.master-users": ["239882051166142465"],
"commands.default-prefix": ".",
"_comment": "The default image shown when someone is banned. Can be null",
"ban.default-image": "https://i.imgur.com/vrEDCui.gif",
"_comment": "Where the errors should be logged in chat, can be null.",
"errors.dropon": {
"guild": "",
"channel": ""
},
"_comment": "Can be roles ids or users ids.",
"errors.mentionwhencrash": ["IDhere"],
"_comment": "The database file (relative to the root of the project)",
"database": "yuno-2-database.db",
"_comment": "Database encryption password. Requires @journeyapps/sqlcipher (npm install @journeyapps/sqlcipher). Leave null for no encryption.",
"database.password": null,
"_comment": "Field-level encryption for sensitive data (works with native SQLite). Set to true and provide a key to enable.",
"database.fieldEncryption.enabled": false,
"_comment": "Field-level encryption key. Required if fieldEncryption is enabled. Use a strong passphrase.",
"database.fieldEncryption.key": null,
"_comment": "Database performance optimizations. Enable based on your hosting situation.",
"database.pragmas": {
"_comment": "WAL mode improves concurrent read/write performance",
"walMode": false,
"_comment": "Performance mode enables: synchronous=NORMAL, temp_store=MEMORY, 64MB cache, 256MB mmap",
"performanceMode": false,
"_comment": "Custom cache size in KB (use negative numbers, e.g., -64000 for 64MB)",
"cacheSize": null,
"_comment": "Store temporary tables in memory instead of disk",
"memoryTemp": false,
"_comment": "Memory-map size in bytes (e.g., 268435456 for 256MB)",
"mmapSize": null
},
"_comment": "The bot will only react, send message, execute commands in this guild if this is a guild-id",
"debug.work-only-on-guild": "",
"_comment": "Message sent when someone talks with the bot in DM",
"chat.dm": "I'm just a bot :'(",
"_comment": "Replied to a user who didn't have the permissions to execute a command",
"chat.insufficient-permissions": ":negative_squared_cross_mark: ${author} You don't have enough permissions to execute this command",
"_comment": "The number of warnings before a ban (when spamming)",
"spam.max-warnings": 3,
"_comment": "DM rate limiting. Adaptively drops messages from users sending too fast. spamAction: 'ignore' (1-hour temp block) or 'ban' (permanent bot-ban).",
"dm-rate-limit.enabled": true,
"dm-rate-limit.spamAction": "ignore",
"_comment": "Number of experience given per msg",
"chat.exppermsg": 20,
"_comment": "Object describing presence (https://discord.js.org/docs/packages/discord.js/14.24.2/ClientPresence). JSON not supported.",
"discord.presence": null,
"_comment": "Activity logger settings",
"_comment": "Low memory mode for Pi/embedded systems. Enforces hard buffer limits and cleans up stale data.",
"activityLogger.lowMemoryMode": false
}