mrna-design-studio / .env.example
offtargeteffect's picture
Deploy mRNA Design Studio (Docker SDK)
99f834c verified
Raw
History Blame Contribute Delete
1.66 kB
# ─────────────────────────────────────────────────────────────────────────────
# 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