# Enable debug mode (shows API docs at /api/docs) DEBUG=false
# ======================================== # Port Configuration # ======================================== # Web interface port WEB_PORT=8530
# Admin dashboard port (only for full deployment) ADMIN_PORT=8531 # ============================================================================= # ADMIN (Optional - Full Deployment Only) # ============================================================================= # Set CREATE_ADMIN=true on first startup to auto-create admin account # The password will be printed in the logs (save it immediately!) CREATE_ADMIN=true ADMIN_USERNAME=admin ADMIN_PASSWORD=laosu123 ADMIN_ROLE=super_admin
# ======================================== # Development Configuration (optional) # ======================================== # Full database URL (auto-generated from above if not set) # DATABASE_URL=postgresql+asyncpg://glean:glean@localhost:5432/glean
# Redis URL # REDIS_URL=redis://localhost:6379/0
# CORS origins (JSON array) # CORS_ORIGINS=["http://localhost", "http://localhost:3000"]
# Glean Full Deployment - Docker Compose (with Admin Dashboard) # Usage: docker compose -f docker-compose.full.yml up -d # # This deployment includes the admin dashboard. # Set CREATE_ADMIN=true to auto-create admin account on first startup.