My question is based on the following existing question:
Django: How to manage development and production settings?
Basically if I want to have 2 or more settings.py files I could use Honcho https://honcho.readthedocs.org/en/latest/ to do it .
Question is , in *.env file what exact code should I write to use for example following settings file:
“myproject.production_settings.py”
something like this?
DJANGO_SETTINGS_MODULE=myproject.production_settings
or it should be different somehow?
Thank you!