forked from Spiderjockey02/Discord-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.js
More file actions
55 lines (53 loc) · 1.54 KB
/
Copy pathconfig.example.js
File metadata and controls
55 lines (53 loc) · 1.54 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
const { Colors } = require('discord.js');
const config = {
ownerID: ['YourAccountID'],
token: 'YourBotToken',
// For looking up Twitch, Fortnite, Steam accounts
api_keys: {
// https://genius.com/developers
genius: 'genuisAPI-KEY',
// https://api.amethyste.moe/
amethyste: 'amethysteAPI-Key',
// https://api.egglord.dev/settings
masterToken: '',
},
// add plugins/commands here if you don't want them loaded in the bot.
disabledCommands: [],
disabledPlugins: [],
websiteURL: 'Bot\'s dashboard',
// your support server
SupportServer: {
// Link to your support server
link: 'https://discord.gg/8g6zUQu',
// Your support's server ID
GuildID: '750822670505082971',
// This for using the suggestion command on your server
ModRole: '751857618720522341',
// What channel to post the suggestions
SuggestionChannel: '761619652009787392',
// Where the bot will send Guild join/leave messages to
GuildChannel: '761619652009787392',
// Where rate limits will be sent to, for investigation
rateLimitChannelID: '761612724370931722',
},
API: {
port: 3000,
secure: true,
token: '123456789',
},
Staff: {
ContributorRole: "814645275544387705",
SupportRole: "740674583023321200",
DeveloperRole: "740682780467396705",
},
LavalinkNodes: [
{ host: 'localhost', port: 5000, password: 'youshallnotpass' },
],
// URL to mongodb
MongoDBURl: 'mongodb://link',
// embed colour
embedColor: Colors.Default,
// This will spam your console if you enable this but will help with bug fixing
debug: false,
};
module.exports = config;