karrot/.env.sample

63 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

2022-09-25 10:26:49 +00:00
TYPE=karrot
2022-09-25 10:07:30 +00:00
2024-03-29 16:20:09 +00:00
# For more information about these options
# see https://docs.karrot.world/self-host/options
2022-09-25 10:26:49 +00:00
DOMAIN=karrot.example.com
2022-09-25 12:15:22 +00:00
COMPOSE_FILE="compose.yml"
2024-03-25 12:36:22 +00:00
SITE_NAME=karrot dev
SITE_LOGO=https://user-images.githubusercontent.com/31616/36565633-517373a4-1821-11e8-9948-5bf6887c667e.png
2023-10-19 13:55:35 +00:00
SECRET_DB_PASSWORD_VERSION=v1
SECRET_SECRET_KEY_VERSION=v1
SECRET_SMTP_PASSWORD_VERSION=v1
2022-09-25 12:15:22 +00:00
# account id for maxmind (for GeoIP)
2024-03-25 12:36:22 +00:00
# uncomment if using maxmind account
# make sure to add the maxmind_license_key secret too
#COMPOSE_FILE="$COMPOSE_FILE:compose.geoip.yml"
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
FILE_UPLOAD_MAX_SIZE=10m
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=
2024-01-25 23:53:58 +00:00
# For web push set this, and the vapid private key secret
# You need to generate a valid vapid keypair
2024-03-29 16:20:09 +00:00
# You can generate one by running:
# docker run --rm codeberg.org/karrot/generate-vapid-keypair
2024-01-25 23:53:58 +00:00
#VAPID_PUBLIC_KEY=
#VAPID_ADMIN_EMAIL=
#SECRET_VAPID_PRIVATE_KEY_VERSION=v1
# for video calls
#MEET_LIVEKIT_ENDPOINT=
#MEET_LIVEKIT_API_KEY=
#SECRET_LIVEKIT_API_SECRET_VERSION=v1
2024-03-29 16:20:09 +00:00
# You probably don't need to touch these
2022-09-30 15:16:26 +00:00
SITE_URL=https://${DOMAIN}
LETS_ENCRYPT_ENV=production
2024-03-25 12:36:22 +00:00
CSRF_TRUSTED_ORIGINS=${SITE_URL}