14 lines
588 B
Bash
14 lines
588 B
Bash
# --- Web app ---
|
|
SECRET_KEY=change-me-to-a-long-random-string
|
|
BASE_URL=http://localhost:8000 # public URL used in approve/deny links
|
|
PORT=8000
|
|
ADMIN_USERNAME=admin # created on first run only
|
|
ADMIN_PASSWORD=changeme
|
|
|
|
# --- Purelymail account (only login and password are needed) ---
|
|
# Server settings are preconfigured: smtp.purelymail.com, port 465, SSL/TLS.
|
|
# If Two Factor Authentication is enabled on the account, use an App Password.
|
|
# Leave MAIL_USER empty to print outgoing mail to the console (dev mode).
|
|
MAIL_USER=you@yourdomain.com
|
|
MAIL_PASSWORD=secret
|