Files
quarksBot/config/config.js
T
2022-07-02 20:21:50 -07:00

21 lines
707 B
JavaScript

module.exports = {
Dev: "PRODUCTION",
Version: "0.1.0",
Admins: ["362791661274660874"], // Admins of the bot
DefaultPrefix: "?",
SupportServer: "https://discord.gg/UnxZtEZ2", //Support Server Link
Token: process.env.token || "", //Discord Bot Token
Scopes: ["identify", "guilds", "applications.commands"], //Discord OAuth2 Scopes
IconURL: "",
EmbedColor: "#6e5145",
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
},
}