# ============================================ # KIS API Builder - Configuration # ============================================ # Copy this file to .env and adjust values # # For default setup (built-in DB): # Only APP_PORT, DB_PASSWORD and JWT_SECRET are needed # # For external database: # Set all DB_* variables # ============================================ # External port (access from host machine) APP_PORT=3000 # Database password (used by both built-in and external DB) DB_PASSWORD=your_secure_password_here # JWT Configuration JWT_SECRET=your-super-secret-jwt-key-change-this-in-production JWT_EXPIRES_IN=24h # ============================================ # External Database (only for docker-compose.external-db.yml) # ============================================ # DB_HOST=your-postgres-host # DB_PORT=5432 # DB_NAME=api_builder # DB_USER=postgres