Nov. 24, 2022
Django Settings Patterns to Avoid
This post is an adapted extract from my book Boost Your Django DX, available now.
Here are some potential mistakes made with Django settings that you can avoid.
Don’t Read Settings at Import Time
Python doesn’t make a distinction between import time and run time.
As such, it …