mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 13:14:58 +05:00
57 lines
No EOL
2.3 KiB
JavaScript
57 lines
No EOL
2.3 KiB
JavaScript
module.exports = {
|
|
/* The token of your Discord Bot */
|
|
token: "XXXXXXXXXXX",
|
|
/* For the support server */
|
|
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.atlanta-bot.fr", // 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)
|
|
},
|
|
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
|
|
},
|
|
/* Bot's owner informations */
|
|
owner: {
|
|
id: "XXXXXXXXXXX", // The ID of the bot's owner
|
|
name: "@Jonny_Bro#4226" // And the name of the bot's owner
|
|
},
|
|
/* DBL votes webhook (optional) */
|
|
votes: {
|
|
port: 5000, // The port for the server
|
|
password: "XXXXXXXXXXX", // The webhook auth that you have defined on discordbots.org
|
|
channel: "XXXXXXXXXXX" // The ID of the channel that in you want the votes logs
|
|
},
|
|
/* The API keys that are required for certain commands */
|
|
apiKeys: {
|
|
// BLAGUE.XYZ: https://blague.xyz/
|
|
blagueXYZ: "XXXXXXXXXXX",
|
|
// FORTNITE TRN: https://fortnitetracker.com/site-api
|
|
fortniteTRN: "XXXXXXXXXXX",
|
|
// FORTNITE FNBR: https://fnbr.co/api/docs
|
|
fortniteFNBR: "XXXXXXXXXXX",
|
|
// DBL: https://discordbots.org/api/docs#mybots
|
|
dbl: "XXXXXXXXXXX",
|
|
// AMETHYSTE: https://api.amethyste.moe
|
|
amethyste: "XXXXXXXXXXX",
|
|
// SENTRY: https://sentry.io (this is not required and not recommended - you can delete the field)
|
|
sentryDSN: "XXXXXXXXXXX"
|
|
},
|
|
/* The others utils links */
|
|
others: {
|
|
github: "https://github.com/Androz2091", // Founder's github account
|
|
donate: "https://patreon.com/Androz2091" // Donate link
|
|
}
|
|
}; |