# ───────────────────────────────────────────────────────────── # Copy this file to `.env` and fill in real values. # cp .env.example .env # Never commit the real .env file. It is in .gitignore. # ───────────────────────────────────────────────────────────── # Node listens on this port, bound to 127.0.0.1 only PORT=3000 # Secret used to HMAC one-time codes before they're stored. # Generate with: openssl rand -hex 32 # DO NOT change this after go-live — all pending codes will be invalidated. CODE_PEPPER=replace_me_with_64_random_hex_characters # SMTP relay settings (your own relay, STARTTLS on 587) SMTP_HOST=smtp.yourrelay.tld SMTP_PORT=587 SMTP_USER=fenja@yourdomain.tld SMTP_PASS=replace_me # "From" address on outbound mail MAIL_FROM="Fenja AI " # Public origin of the site — used only in log output PUBLIC_ORIGIN=https://project-bifrost.fenja.ai # Set to "development" locally to allow http:// cookies. # In production, omit or set to "production". NODE_ENV=development