2022-01-04 02:18:28 +05:00
|
|
|
module.exports = {
|
|
|
|
/* The token of your Discord Bot */
|
|
|
|
token: "XXXXXXXXXXX",
|
2022-07-23 17:14:42 +05:00
|
|
|
/* ID of Bot's user */
|
|
|
|
user: "XXXXXXXXXXX",
|
2022-08-04 19:41:28 +05:00
|
|
|
/* Set to true for production */
|
|
|
|
production: true,
|
2022-10-03 19:31:19 +05:00
|
|
|
/* For the support server */
|
2022-01-04 02:18:28 +05:00
|
|
|
support: {
|
|
|
|
id: "XXXXXXXXXXX", // The ID of the support server
|
|
|
|
logs: "XXXXXXXXXXX", // And the ID of the logs channel of your server (new servers for example)
|
|
|
|
},
|
|
|
|
/* Dashboard configuration */
|
|
|
|
dashboard: {
|
|
|
|
enabled: false, // whether the dashboard is enabled or not
|
|
|
|
secret: "XXXXXXXXXXX", // Your discord client secret
|
|
|
|
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://dashboard.example.com" // url on which users will be redirected if they click the cancel button (discord authentication)
|
|
|
|
},
|
|
|
|
mongoDB: "mongodb://localhost:27017/discordbot", // The URl of the mongodb database
|
|
|
|
/* For the embeds (embeded messages) */
|
|
|
|
embed: {
|
|
|
|
color: "#0091fc", // The default color for the embeds
|
|
|
|
footer: "Bot | v1.0" // And the default footer for the embeds
|
|
|
|
},
|
|
|
|
/* Bot's owner informations */
|
|
|
|
owner: {
|
|
|
|
id: "XXXXXXXXXXX", // The ID of the bot's owner
|
2022-08-26 10:30:07 +05:00
|
|
|
name: "XXXXXXXXXXX#1234" // And the name of the bot's owner
|
2022-01-04 02:18:28 +05:00
|
|
|
},
|
|
|
|
/* The API keys that are required for certain commands */
|
2022-08-29 21:31:36 +05:00
|
|
|
/* Not used right now */
|
|
|
|
apiKeys: {}
|
2022-01-04 02:18:28 +05:00
|
|
|
};
|