-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.example.js
More file actions
42 lines (35 loc) · 1.02 KB
/
config.example.js
File metadata and controls
42 lines (35 loc) · 1.02 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
constconfig = {
"ownerID": "BotOwner",
"token": "BotToken",
//API Keys
"GoogleAPIKey": "GoogleAPIKey",
//LOG Channels
"consoleLogs": "ConsoleLogsChannelID",
"startupLogs": "StartUpLogsChannelID",
//Webhooks
"webhook": {
"ID": "WEBHOOKID",
"secret": "WEBHOOKSECRET"
},
//Dashboard Settings
"dashboard": {
"oauthSecret": "OauthSecrethere",
"callbackURL": "https://example.example/callback",
"sessionSecret": "enterasecrethere",
"domain": "https://example.example",
"port": PORT
},
//Default settings
"defaultSettings" : {
"prefix": "DB!",
"modonlycommands": "false",
"serverLogs": "false",
"modLogChannel": "mod-log",
"modRole": "Moderator",
"adminRole": "Administrator",
"welcomeChannel": "welcome",
"welcomeMessage": "Welcome {{user}} to {{guild}}! You are the {{amount}} user to join!",
"welcomeEnabled": "false"
},
};
module.exports = config;