# ───────────────────────────────────────────────────────────────────────────── # mRNA Design Studio — environment configuration # # Copy this file to .env and fill in the values you need. # The app loads .env automatically via python-dotenv. # ───────────────────────────────────────────────────────────────────────────── # ── Password protection (pick ONE) ────────────────────────────────────────── # Option A: single shared password (any username accepted at login) MRNA_STUDIO_PASSWORD=changeme # Option B: multiple users (JSON — overrides MRNA_STUDIO_PASSWORD if set) # MRNA_STUDIO_USERS={"alice": "pass1", "bob": "pass2"} # ── Session cookie secret (change in production!) ─────────────────────────── MRNA_STUDIO_COOKIE_SECRET=replace-with-a-random-string # ── Server ─────────────────────────────────────────────────────────────────── # PORT=5007 # overridden by Railway / Render automatically # HOST=0.0.0.0 # bind to all interfaces (required in containers) # MRNA_STUDIO_RELOAD=1 # set to 1 to enable hot-reload during development