17 lines
708 B
Plaintext
17 lines
708 B
Plaintext
# Copy to .env (which is gitignored) — `make env` generates one with fresh secrets.
|
|
# Read by the systemd service (EnvironmentFile) and the reminder cron job
|
|
# (uv run --env-file), both of which want plain unquoted KEY=value lines.
|
|
# `make env` uses a URL-safe alphabet for the generated secrets.
|
|
|
|
DJANGO_SECRET_KEY=change-me
|
|
DJANGO_DEBUG=0
|
|
DJANGO_ALLOWED_HOSTS=osiris.legrems.xyz,127.0.0.1,localhost
|
|
DJANGO_CSRF_TRUSTED_ORIGINS=https://osiris.legrems.xyz
|
|
DJANGO_TIME_ZONE=Europe/Zurich
|
|
|
|
# From `make vapid` / `manage.py generate_vapid_keys`. Without these, reminders
|
|
# are disabled and the Today page's Reminders card says so.
|
|
VAPID_PUBLIC_KEY=
|
|
VAPID_PRIVATE_KEY=
|
|
VAPID_CLAIM_EMAIL=flamelegrems@gmail.com
|