About Using the Single Source of Truth Principle
Don't copy the same configuration variables in multiple places. You can read a variable from Django settings into a Bash variable like this:
DJANGO_SETTINGS_MODULE=myproject.settings.production
DATABASE_NAME=$(
python manage.py shell -c \
"from django.conf import settings;\
print(settings.DATABASES['default']['NAME'])"
)
Programming Dev Ops Django 4.2 Django 3.2 Django 2.2 Bash Zsh
Also by me
Django Paddle Subscriptions app
For Django-based SaaS projects.
Django GDPR Cookie Consent app
For Django websites that use cookies.