Files
dayz-reforger/config/config.js
T
2023-03-31 17:56:49 -07:00

33 lines
1.0 KiB
JavaScript

const package = require('../package.json');
require('dotenv').config();
module.exports = {
Dev: process.env.Dev || "DEV.",
Version: package.version, // (major).(feature).(revision/bug/refactoring)
Admins: ["362791661274660874", "329371697570381824"], // Admins of the bot
ServerID: "1050215624053374976",
GuildID: process.env.GuildID || "",
SupportServer: "https://discord.gg/KVFJCvvFtK", //Support Server Link
Token: process.env.token || "", //Discord Bot Token
Scopes: ["identify", "guilds", "applications.commands"], //Discord OAuth2 Scopes
Nitrado: {
ServerID: process.env.SERVER_ID,
UserID: process.env.USER_ID,
Auth: process.env.AUTH_KEY
},
IconURL: "",
Colors: {
Default: "#8a7c72",
DarkRed: "#ba0f0f",
Red: "#f55c5c",
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
},
}