Configuration Guide
This guide will help you configure Glizzy Bot for your Minecraft server and Discord community.
Environment Variables
Create a .env file in the project root with the following variables:
DISCORD_TOKEN- Your Discord bot tokenCLIENT_ID- Your Discord application IDGUILD_ID- Your Discord server IDDATABASE_URL- PostgreSQL database connection URLPORT- Server port (default: 3000)NODE_ENV- Environment (development/production)
Discord Bot Setup
For detailed Discord bot setup instructions, visit our GitHub repository for complete configuration steps.
Database Configuration
Glizzy uses PostgreSQL for data storage. Configure your database URL in the environment variables section above.
Running the Bot
After configuration, you can start the bot with:
- Development:
npm run dev - Production:
npm run build && npm start