MyMidas/demo/.env.example
megaproxy 58ab921068 Add DEMO_MODE=true to demo .env.example for clarity
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-23 22:16:49 +00:00

22 lines
1.5 KiB
Text

# 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