karrot/.env.sample

47 lines
1.0 KiB
Plaintext
Raw Normal View History

2022-09-25 10:26:49 +00:00
TYPE=karrot
2022-09-25 10:07:30 +00:00
2022-09-25 10:26:49 +00:00
DOMAIN=karrot.example.com
2022-09-25 12:15:22 +00:00
2023-10-19 13:55:35 +00:00
SECRET_DB_PASSWORD_VERSION=v1
SECRET_SECRET_KEY_VERSION=v1
SECRET_SMTP_PASSWORD_VERSION=v1
2024-01-17 18:49:42 +00:00
SECRET_VAPID_PRIVATE_KEY_VERSION=v1
2023-10-19 13:55:35 +00:00
2022-09-25 12:15:22 +00:00
# account id for maxmind (for GeoIP)
2023-10-19 13:55:35 +00:00
#MAXMIND_ACCOUNT_ID=
2023-10-19 18:03:05 +00:00
SECRET_MAXMIND_LICENSE_KEY_VERSION=v1
2022-09-25 10:07:30 +00:00
2022-09-30 15:16:26 +00:00
SITE_NAME=karrot dev
SITE_LOGO=https://user-images.githubusercontent.com/31616/36565633-517373a4-1821-11e8-9948-5bf6887c667e.png
FILE_UPLOAD_MAX_SIZE=10m
2024-01-17 18:41:14 +00:00
# For web push set this, and the vapid private key secret
# You need to generate a valid vapid keypair
#VAPID_PUBLIC_KEY=
2024-01-17 19:00:14 +00:00
#VAPID_ADMIN_EMAIL=
2024-01-17 18:41:14 +00:00
2022-09-30 15:16:26 +00:00
# postal,smtp,console
EMAIL_BACKEND=console
# only set these when using EMAIL_BACKEND=smtp
2022-09-30 15:16:26 +00:00
# SMTP USER and EMAIL_FROM are usually the same
2023-10-19 13:18:26 +00:00
#EMAIL_FROM=
2022-09-30 15:16:26 +00:00
#SMTP_USER=
#SMTP_HOST=
2023-10-19 13:18:26 +00:00
#SMTP_USE_SSL=
2022-09-30 15:20:57 +00:00
#SMTP_USE_TLS=true
2022-09-30 15:16:26 +00:00
#SMTP_PORT=587
2022-09-25 10:07:30 +00:00
# only set these when using EMAIL_BACKEND=postal
#POSTAL_API_KEY=
#POSTAL_API_URL=
#POSTAL_WEBHOOK_KEY=
# only if you have configured incoming emails
#EMAIL_REPLY_DOMAIN=
2022-09-30 15:16:26 +00:00
SITE_URL=https://${DOMAIN}
LETS_ENCRYPT_ENV=production
2023-10-19 18:03:05 +00:00
CSRF_TRUSTED_ORIGINS=${SITE_URL}