DJANGO_DEVELOPMENT=true python manage.py runserver At the bottom of your settings.py file, add the following. # Override production variables if DJANGO_DEVELOPMENT env variable is true if os.getenv('DJANGO_DEVELOPMENT') == 'true': from settings_dev import * # or specific overrides (Note that importing * should generally be avoided in Python) More @Wikipedia
Hover over any link to get a description of the article. Please note that search keywords are sometimes hidden within the full article and don't appear in the description or title.