35 lines
984 B
Plaintext
35 lines
984 B
Plaintext
NODE_ENV=development
|
|
PORT=3000
|
|
APP_BASE_URL=http://localhost:3000
|
|
PRIMARY_DOMAIN=debbiewindlerseamstress.com
|
|
SECONDARY_DOMAIN=debbiewindler.com
|
|
|
|
# Generate a long random value before production.
|
|
SESSION_SECRET=replace-with-a-long-random-secret
|
|
|
|
# Required before the first owner account can be created.
|
|
# Open /admin/setup?token=the-value-here during first setup.
|
|
SETUP_TOKEN=replace-with-a-long-random-one-time-setup-token
|
|
|
|
# Use "loopback" when a local reverse proxy such as Caddy/Nginx forwards to Node.
|
|
TRUST_PROXY=loopback
|
|
|
|
# SQLite and local file storage.
|
|
DATABASE_PATH=./storage/site.sqlite
|
|
UPLOAD_DIR=./public/uploads
|
|
BACKUP_DIR=./storage/backups
|
|
|
|
# SMTP email notification settings. Messages are still stored if email fails.
|
|
SMTP_HOST=
|
|
SMTP_PORT=587
|
|
SMTP_SECURE=false
|
|
SMTP_USER=
|
|
SMTP_PASS=
|
|
SMTP_FROM="Debbie Windler Seamstress <website@debbiewindlerseamstress.com>"
|
|
OWNER_EMAIL=
|
|
|
|
# Optional future CAPTCHA support.
|
|
CAPTCHA_ENABLED=false
|
|
CAPTCHA_SITE_KEY=
|
|
CAPTCHA_SECRET_KEY=
|