25 lines
650 B
Plaintext
25 lines
650 B
Plaintext
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
|