1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 14:01:55 +00:00
musix-oss/src/struct/config/config.ts

32 lines
858 B
TypeScript
Raw Normal View History

2020-02-10 19:04:42 +00:00
require('dotenv/config');
2020-02-05 20:02:53 +00:00
module.exports = {
token: process.env.TOKEN,
2020-02-10 19:04:42 +00:00
devToken: process.env.DEVTOKEN,
dblKey: process.env.DBLKEY,
api_key: process.env.GOOGLE_API_KEY,
2020-03-15 20:09:00 +00:00
testServer: "489111553321336832",
2020-02-10 19:04:42 +00:00
primary_test_channel: "617633098296721409",
secondary_test_channel: "570531724002328577",
2020-02-05 20:02:53 +00:00
devId: "360363051792203779",
2020-02-12 19:38:48 +00:00
embedColor: "#b50002",
2020-03-19 14:45:05 +00:00
invite: "https://discordapp.com/oauth2/authorize?client_id=607266889537945605&permissions=3427328&scope=bot",
2020-03-21 17:49:25 +00:00
supportServer: "https://discord.gg/rvHuJtB",
2020-04-05 21:20:34 +00:00
devMode: true,
api: false,
2020-02-13 03:36:09 +00:00
saveDB: true,
2020-03-21 17:49:25 +00:00
respawn: true,
2020-03-13 20:42:45 +00:00
shards: 10,
2020-03-14 16:41:06 +00:00
shardDelay: 10000,
spawnTimeout: 60000,
2020-03-13 20:31:04 +00:00
respawnDelay: 1000,
2020-02-12 19:38:48 +00:00
prefix: ">",
2020-02-20 20:31:03 +00:00
devPrefix: "-",
2020-02-05 20:02:53 +00:00
defaultVolume: 5,
permissions: false,
dj: false,
djrole: null,
startPlaying: true,
2020-03-13 20:59:20 +00:00
bass: 1
2020-02-05 20:02:53 +00:00
}