Files
2026-09-13 20:12:28 +01:00

22 lines
688 B
Bash

# ---- Server ----
PORT=3000
SESSION_SECRET=please-change-this-to-a-long-random-string
COOKIE_SECURE=false # set true when served over HTTPS
# ---- Storage paths (optional overrides) ----
# DB_PATH=./data/datahub.db
# UPLOAD_DIR=./uploads
# BRAND_DIR=./brand
# ---- First administrator ----
# Nothing to set here. On first boot, open the site in a browser and the
# setup wizard will ask you to create the administrator account.
# ---- SMTP (email). If omitted, mails are logged to the audit outbox instead ----
# SMTP_HOST=smtp.yourprovider.com
# SMTP_PORT=587
# SMTP_SECURE=false
# SMTP_USER=apikey-or-username
# SMTP_PASS=secret
# MAIL_FROM=ISDSS <no-reply@yourdomain.com>