28 lines
968 B
JavaScript
28 lines
968 B
JavaScript
require('dotenv').config();
|
|
|
|
module.exports = {
|
|
Dev: "PROD.",
|
|
Version: "12.7.6",
|
|
Admins: ["362791661274660874", "329371697570381824"], // Admins of the bot
|
|
DefaultPrefix: "?",
|
|
ServerID: "955668596745461830",
|
|
SupportServer: "https://discord.gg/YCXhvy9uZw", //Support Server Link
|
|
Token: process.env.token || "", //Discord Bot Token
|
|
Scopes: ["identify", "guilds", "applications.commands"], //Discord OAuth2 Scopes
|
|
IconURL: "https://cdn.discordapp.com/avatars/992978604965240932/1555ac63f4f4741e7b41d08a68c2f733.png?size=256",
|
|
Colors: {
|
|
Default: "#6e5145",
|
|
Red: "#ba0f0f",
|
|
Green: "#32a852",
|
|
Yellow: "#ffb01f"
|
|
},
|
|
Permissions: 2205281600,
|
|
mongoURI: process.env.mongoURI || "mongodb://localhost:27017",
|
|
dbo: process.env.dbo || "knoldus",
|
|
Presence: {
|
|
status: "online", // You can show online, idle, and dnd
|
|
name: "Grand Theft Auto V", // The message shown
|
|
type: "PLAYING", // PLAYING, WATCHING, LISTENING, STREAMING
|
|
},
|
|
}
|