When I run python manage.py shell, I can print out the python path
python manage.py shell
>>> import sys >>> sys.path
What should I typ
In case a newbie stumbles upon this question wanting to be spoon fed the way to print out the values for all settings:
def show_settings(): from django.conf import settings for name in dir(settings): print(name, getattr(settings, name))