This commit is contained in:
2025-08-31 00:29:53 +02:00
parent 191bd84573
commit 29611b15ca
87 changed files with 2451 additions and 0 deletions

24
.env.dist Normal file
View File

@@ -0,0 +1,24 @@
USER_ID=1000 # id user
GROUP_ID=1000
TRAEFIK_HOST_RULE="Host(`example.com`) || Host(`www.example.com`)"
LISTEN_PORT=8000 # only for dev
DEBUG=true
SECRET="change_me" # generate with "pwgen -y 50"
ALLOWED_HOSTS='["127.0.0.1", "localhost"]'
CSRF_TRUSTED_ORIGINS='["http://127.0.0.1:8000", "http://localhost:8000"]'
BASE_URL='http://127.0.0.1/'
### DEV RELATED
# VITE
DEV_SERVER_HOST='127.0.0.1'
DEV_SERVER_PORT='8080'
EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend # django.core.mail.backends.smtp.EmailBackend
EMAIL_HOST=example.test #
EMAIL_PORT=587 # 587
EMAIL_USER=test #
EMAIL_PASSWORD=test #
EMAIL_SENDER=no-reply@example.test