[Answer]-Import settings in Django

1👍

In your apps you should use settings like this:

from django.conf import settings
...
settings.SOME_VARIABLE

You should not worry where they come from.

Leave a comment