update config sample

This commit is contained in:
Jonny_Bro (Nikita) 2023-10-22 00:30:31 +05:00
parent f1366cc9ec
commit b900207c44

View file

@ -1,37 +1,36 @@
module.exports = { module.exports = {
/* The token of your Discord Bot */ /* The token of your Discord Bot */
token: "XXXXXXXXXXX", token: "XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
/* ID of Bot's user */ /* ID of Bot's user */
userId: "XXXXXXXXXXX", userId: "123456789098765432",
/* Set to true for production */ /* Set to true for production */
production: true, production: true,
/* For the support server */ /* For the support server */
support: { support: {
id: "XXXXXXXXXXX", // The ID of the support server id: "123456789098765432", // The ID of the support server
logs: "XXXXXXXXXXX", // And the ID of the logs channel of your server (new servers for example) logs: "123456789098765432", // And the ID of the logs channel of your server (new servers for example)
invite: "XXXXXXXXXXX", // Invite link to your support server invite: "https://discord.gg/discord", // Invite link to your support server
}, },
/* Dashboard configuration */ /* Dashboard configuration */
dashboard: { dashboard: {
enabled: true, // Whether the dashboard is enabled or not enabled: false, // Whether the dashboard is enabled or not
maintanceKey: "XXXXXXXXXXX", // Your maintance key maintanceKey: "letmein", // Your maintance key
port: 80, // Dashboard port port: 80, // Dashboard port
domain: "http://localhost", // The base URL of the dashboard without / at the end domain: "http://localhost", // The base URL of the dashboard without / at the end
secret: "XXXXXXXXXXX", // Your Discord Client's Secret secret: "XXXXXXXXXXXXXXXXXXXXXXXXXXXX", // Your Bot's Client Secret
logs: "XXXXXXXXXXX", // The channel ID for logs logs: "123456789098765432", // The channel ID for logs
}, },
mongoDB: "mongodb://localhost:27017/discordbot", // The URl of the mongodb database mongoDB: "mongodb://127.0.0.1:27017/discordbot", // The URL of the MongoDB database
/* For the embeds (embeded messages) */ /* For the embeds */
embed: { embed: {
color: "#0091fc", // The default color for the embeds color: "#00FF00", // The default color for the embeds
footer: { footer: {
text: "Bot | v" + require("./package.json").version, text: "My Discord Bot | v" + require("./package.json").version,
}, // And the default footer for the embeds }, // And the default footer for the embeds
}, },
/* Bot's owner informations */ /* Bot's owner informations */
owner: { owner: {
id: "XXXXXXXXXXX", // The ID of the bot's owner id: "123456789098765432", // The ID of the bot's owner
name: "XXXXXXXXXXX#1234", // And the name of the bot's owner
}, },
/* The API keys that are required for certain commands */ /* The API keys that are required for certain commands */
apiKeys: {}, apiKeys: {},