@ptkdev/node-discord-bot-boilerplate
Version:
Create your discord bot with this friendly boilerplate. Use this repository as template for your bot
29 lines • 770 B
JavaScript
module.exports = {
// Server
"server": {
"port": 5000,
},
"discord": {
token: "ODI4OTcxNDM2NTA4NTc3ODIz.YGxV0A.uFrJL2YyuKvy00jfyIz-beBZrdc",
},
"databases": { users: "databases/users.json" },
// Debug
"debug": false,
// LOGS
"log": {
"path": {
"debug_log": "./logs/debug.log",
"error_log": "./logs/errors.log"
},
"language": "en",
"colors": "enabled",
"debug": "enabled",
"info": "enabled",
"warning": "enabled",
"error": "enabled",
"sponsor": "enabled",
"write": "enabled",
"type": "log" // format of logs in files (optional, default log - values: log|json)
}
};
//# sourceMappingURL=config.js.map