makecord-create
Version:
Create advanced Discord Bots with Makecord - Now with TypeScript support
10 lines (8 loc) • 423 B
JavaScript
const config = {
token: 'YOUR_BOT_TOKEN', // Replace with your bot token
clientId: 'YOUR_CLIENT_ID', // Replace with your client ID
guildId: 'YOUR_GUILD_ID', // Replace with your guild ID (optional)
prefix: '!', // You can change this to your desired prefix
mongodb: 'YOUR_MONGODB_DATABASE_URI' // (if mongodb selected) Replace with your MongoDB database URI (optional)
};
module.exports = { config };