# MyMidas Demo — environment variables # Copy to .env and fill in every value before deploying. # ── Encryption ──────────────────────────────────────────────────────────────── # 32-byte hex key for AES-256-GCM field encryption. # Generate with: python3 -c "import secrets; print(secrets.token_hex(32))" ENCRYPTION_KEY= # ── Database ────────────────────────────────────────────────────────────────── # Strong random password for the demo Postgres user. DB_PASSWORD= # ── Redis ───────────────────────────────────────────────────────────────────── REDIS_PASSWORD= # ── Environment ─────────────────────────────────────────────────────────────── # Keep as "production" (hides /docs, enforces security headers). ENVIRONMENT=production # ── Demo mode ───────────────────────────────────────────────────────────────── # Must be true for auto-seeding, hourly reset, and demo UI to work. DEMO_MODE=true