sample config

This commit is contained in:
JonnyBro 2021-12-14 23:17:54 +05:00
parent ac227fb1ea
commit 359012b12b

View file

@ -10,18 +10,18 @@ module.exports = {
dashboard: {
enabled: false, // whether the dashboard is enabled or not
secret: "XXXXXXXXXXX", // Your discord client secret
baseURL: "https://dashboard.atlanta-bot.fr", // The base URl of the dashboard
baseURL: "https://dashboard.example.com", // The base URl of the dashboard
logs: "XXXXXXXXXXX", // The channel ID of logs
port: 8080, // Dashboard port
expressSessionPassword: "XXXXXXXXXXX", // Express session password (it can be what you want)
failureURL: "https://www.atlanta-bot.fr" // url on which users will be redirected if they click the cancel button (discord authentication)
failureURL: "https://dashboard.example.com" // url on which users will be redirected if they click the cancel button (discord authentication)
},
mongoDB: "mongodb://localhost:27017/AtlantaBot", // The URl of the mongodb database
prefix: "*", // The default prefix for the bot
/* For the embeds (embeded messages) */
embed: {
color: "#0091fc", // The default color for the embeds
footer: "Atlanta | Open Source" // And the default footer for the embeds
footer: "Bot | v1.0" // And the default footer for the embeds
},
/* Bot's owner informations */
owner: {
@ -51,7 +51,7 @@ module.exports = {
},
/* The others utils links */
others: {
github: "https://github.com/Androz2091", // Founder's github account
donate: "https://patreon.com/Androz2091" // Donate link
github: "https://github.com/JonnyBro", // Founder's github account
donate: "https://patreon.com/XXXXXXXXXXX" // Donate link
}
};