-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.js
More file actions
27 lines (25 loc) · 817 Bytes
/
config.example.js
File metadata and controls
27 lines (25 loc) · 817 Bytes
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
module.exports = {
token: "<BOT_TOKEN>", // string
owners: ["<USER_ID>"], // array<string> (user ID)
mongo: "<MONGO_URI>", // string
zipline: {
token: null, // string
url: null, // string (it should look like https://example.com)
chunkSize: null, // number (in mb)
maxFileSize: null, // number (in mb)
},
autocomplete: {
tag: true, // whether /tag command should have autocomplete
},
// DM me on Discord for a token - ninja_5000
// Though there is no guarantee that I will provide you with one.
naviac: {
username: null, // string
token: null, // string
},
// Embed settings
embeds: {
pingEmbedColour: "#74b9ff", //string (hex: 6 characters) - embed colour - /ping
evalEmbedColour: "#74b9ff", //string (hex: 6 characters) - embed colour - /eval
},
};