Some checks failed
CI / Lint & Typecheck (push) Has been cancelled
CI / Test (routes) (push) Has been cancelled
CI / Test (security) (push) Has been cancelled
CI / Test (services) (push) Has been cancelled
CI / Test (unit) (push) Has been cancelled
CI / Test (integration) (push) Has been cancelled
CI / Test Coverage (push) Has been cancelled
CI / Build (push) Has been cancelled
23 lines
651 B
Plaintext
23 lines
651 B
Plaintext
# 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
|