python manage.py runserver --settings=settings.local
Pros: * Configuration is separated from code. * Environment parity – you have the same code for all environments. * No inheritance in settings, and cleaner and more consistent code. * There is a theoretical grounding for using environment variables – 12 Factors.
