-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.js
30 lines (29 loc) · 872 Bytes
/
config.js
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 dotenv = require("dotenv");
dotenv.config();
module.exports = {
botToken: process.env.token,
mongoUrl: process.env.mongoUrl,
redis: process.env.redis,
clientId: "1293072781491044415",
logChannel: "1293079076697018469",
voteLog: "1293079113787113493",
deploySlashOnReady: true,
underDevelopment: false,
developers: [
{
name: "Jason Midul",
id: "948807824446742568",
},
],
devGuilds: [
{
name: "Bettle Counter",
id: "1293078905430736928",
},
],
betaTestGuilds: [],
cTopic:
"Counting Rules: \n\n1 • No Skipping Numbers\n2 • No Going Back In Numbers\n3 • Must alternate counters (except for solo mode)\n4 • No Botting, Scripting Or Abusing Bugs\n5 • Do Not Intentionally Ruin The Count",
voteUrl: "https://top.gg/bot/1293072781491044415/vote",
logWebhook: process.env.logWebhook,
};