# ============================================================================= # KoolBot Environment Configuration # ============================================================================= # Copy this file to .env and fill in your values: # cp .env.example .env # # Get your credentials from: https://discord.com/developers/applications # ============================================================================= # Discord Bot Credentials (Required) # Get from Discord Developer Portal → Your Application DISCORD_TOKEN=your_bot_token_here CLIENT_ID=your_application_id_here GUILD_ID=your_server_id_here # Database Configuration (Required) # For Docker Compose, leave as-is. The hostname "mongodb" refers to the container. MONGODB_URI=mongodb://mongodb:27017/koolbot # Environment Settings (Optional) # Set DEBUG=true for detailed logging during troubleshooting DEBUG=false NODE_ENV=production # ============================================================================= # How to get your Discord credentials: # ============================================================================= # 1. Go to https://discord.com/developers/applications # 2. Create or select your application # 3. DISCORD_TOKEN: Bot tab → Reset Token → Copy token # 4. CLIENT_ID: General Information → Application ID # 5. GUILD_ID: Your Discord Server → Right-click server icon → Copy ID # (Enable Developer Mode in Discord: User Settings → Advanced → Developer Mode) # # Note: All other bot settings are configured through Discord commands # after the bot starts. See README.md for setup instructions. # =============================================================================