# Server-Konfiguration
PORT=3000
NODE_ENV=development

# JWT Secret Key (WICHTIG: In Produktion durch starken, zufälligen Schlüssel ersetzen!)
JWT_SECRET=IhrSuperGeheimesJWTSecretKey2024!ÄndernSieDies!
JWT_EXPIRES_IN=24h

# CORS Konfiguration
ALLOWED_ORIGINS=http://localhost:3000,http://127.0.0.1:3000,http://localhost:5500

# MySQL Datenbank-Konfiguration
DB_HOST=localhost
DB_PORT=3306
DB_USER=root
DB_PASSWORD=
DB_NAME=quiz_app

# Logging
LOG_LEVEL=info
LOG_DIR=./logs
