we are trying to identify best practices to set Django settings for the different envs we would like to use such as local dev, staging and production.
Reading around, we found two main technics used:
The settings_local.py file, not versioned, imported at the end of the main settings.py file
The settings module way, where settings becomes a python module, and specific env.py files are inside it source here
We would prefer the second way, since it seems very modular and "python" way, but, being the guide still incomplete, how to say Django which module to use for each different env?
Do you think it is a good way to manage Django settings?
Thanks you all.