# Production Configuration Template # Copy this file to .env.production and update with your production values # Application Environment NODE_ENV=production # Log Level (debug, info, warn, error) # Recommended: info for production LOG_LEVEL=info # Server Port (default: 3001) PORT=3001 # Frontend URL (e.g., https://awards.dj7nt.de) VITE_APP_URL=https://awards.dj7nt.de # API Base URL (leave empty for same-domain deployment) VITE_API_BASE_URL= # Allowed CORS origins (comma-separated) # Add all domains that should access the API ALLOWED_ORIGINS=https://awards.dj7nt.de,https://www.awards.dj7nt.de # JWT Secret (REQUIRED - generate a strong secret!) # Generate with: openssl rand -base64 32 JWT_SECRET=REPLACE_WITH_SECURE_RANDOM_STRING # Database (if using external database) # Leave empty to use default SQLite database # DATABASE_URL=file:/path/to/production.db