# Docker Compose Environment Variables # Copy to .env and fill in your values # Database password DB_PASSWORD=change-me-to-secure-password # Authentication secrets (generate with: openssl rand -hex 32) JWT_SECRET=generate-with-openssl-rand-hex-32 COOKIE_SECRET=generate-with-openssl-rand-hex-32 # CORS origin (* for all origins, or specific domain like https://your-domain.com) CORS_ORIGIN=* # Optional # PORT=3000 # LOG_LEVEL=info # POLLER_ENABLED=true # POLLER_INTERVAL=15000 # Mobile beta testing mode - enables reusable tokens, no expiry, unlimited devices # Useful for TestFlight/beta testing. Disable in production. # MOBILE_BETA_MODE=true