-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.js
More file actions
30 lines (24 loc) · 1.07 KB
/
config.js
File metadata and controls
30 lines (24 loc) · 1.07 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
const config = {
// Bot Owner, level 10 by default. You no longer need to supply the owner ID, as the bot
// will pull this information directly from it's application page.
// Bot Admins, level 9 by default. Array of user ID strings.
"admins": [],
// Bot Support, level 8 by default. Array of user ID strings
"support": [],
// Your Bot's Token. Available on https://discordapp.com/developers/applications/me
"token": process.env.DISCORD_KEY,
// Default per-server settings. These settings are entered in a database on first load,
// And are then completely ignored from this file. To modify default settings, use the `conf` command.
// DO NOT REMOVE THIS BEFORE YOUR BOT IS LOADED AND FUNCTIONAL.
defaultSettings: {
"prefix": process.env.DISCORD_COMMAND_PREFIX || "-",
"modLogChannel": "moderators",
"modRole": "Community Moderator",
"adminRole": "Community Staff",
"systemNotice": "true",
"welcomeChannel": "discord-server-admin",
"welcomeMessage": "{{user}} joined!",
"welcomeEnabled": "true"
}
};
module.exports = config;