1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-12-23 03:33:17 +00:00

Update config.ts

This commit is contained in:
MatteZ02 2020-04-16 23:08:12 +03:00
parent 41ec084ab1
commit 3314208ec2

View File

@ -1,31 +1,32 @@
require('dotenv/config'); require("dotenv/config");
module.exports = { module.exports = {
token: process.env.TOKEN, token: process.env.TOKEN,
devToken: process.env.DEVTOKEN, devToken: process.env.DEVTOKEN,
dblKey: process.env.DBLKEY, dblKey: process.env.DBLKEY,
api_key: process.env.GOOGLE_API_KEY, api_key: process.env.GOOGLE_API_KEY,
testServer: "489111553321336832", testServer: "489111553321336832",
primary_test_channel: "617633098296721409", primary_test_channel: "617633098296721409",
secondary_test_channel: "570531724002328577", secondary_test_channel: "570531724002328577",
devId: "360363051792203779", devId: "360363051792203779",
embedColor: "#b50002", embedColor: "#b50002",
invite: "https://discordapp.com/oauth2/authorize?client_id=607266889537945605&permissions=3427328&scope=bot", invite:
supportServer: "https://discord.gg/rvHuJtB", "https://discordapp.com/oauth2/authorize?client_id=607266889537945605&permissions=3427328&scope=bot",
devMode: false, supportServer: "https://discord.gg/rvHuJtB",
api: false, devMode: true,
saveDB: true, api: false,
respawn: true, saveDB: true,
shards: 10, respawn: true,
shardDelay: 10000, shards: 10,
spawnTimeout: 60000, shardDelay: 10000,
respawnDelay: 1000, spawnTimeout: 60000,
prefix: ">", respawnDelay: 1000,
devPrefix: "-", prefix: ">",
defaultVolume: 5, devPrefix: "-",
permissions: false, defaultVolume: 5,
dj: false, permissions: false,
djrole: null, dj: false,
startPlaying: true, djrole: null,
bass: 1 startPlaying: true,
} bass: 1,
};