# ============================================================ # EEG Portal - Environment Configuration # Copy this file to .env and fill in the values # ============================================================ # Required: JWT secret for token signing (use a strong random string) JWT_SECRET=your-super-secret-jwt-key-change-this # Required: Frontend URL (your domain) APP_FRONTEND_URL=https://your-domain.at # Required: Backend API URL APP_BACKEND_URL=https://your-domain.at # Required: CORS allowed origins (comma-separated) CORS_ORIGINS=https://your-domain.at # Required: PostgreSQL configuration POSTGRES_DB=eegportal POSTGRES_USER=eeg POSTGRES_PASSWORD=your-strong-db-password-change-this # Optional: Server port (default: 80) APP_PORT=80 # Optional: Mail configuration # MAIL_HOST=smtp.your-provider.at # MAIL_PORT=587 # MAIL_USERNAME=your-email@domain.at # MAIL_PASSWORD=your-mail-password # Optional: JVM settings # JAVA_OPTS=-Xms256m -Xmx512m