initial commit - base code
This commit is contained in:
15 files changed
+2257
No files matched your search
@@ -0,0 +1,27 @@
|
||||
const package = require('../package.json');
|
||||
require('dotenv').config();
|
||||
|
||||
module.exports = {
|
||||
Dev: "PROD.",
|
||||
Version: package.version, // (major).(feature).(revision/bug/refactoring)
|
||||
Admins: ["362791661274660874", "329371697570381824"], // Admins of the bot
|
||||
ServerID: "",
|
||||
SupportServer: "", //Support Server Link
|
||||
Token: process.env.token || "", //Discord Bot Token
|
||||
Scopes: ["identify", "guilds", "applications.commands"], //Discord OAuth2 Scopes
|
||||
IconURL: "",
|
||||
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
|
||||
},
|
||||
}
|
||||
Reference in new issue
Block a user