Closed alisonrclarke closed 2 years ago
Make sure all settings that the administrators might want to edit can be set in the environment, but define defaults in settings.py, i.e. Instead of using env('xxxx') we should use env.str('xxxx', 'default_value').
settings.py
env('xxxx')
env.str('xxxx', 'default_value')
Make sure all settings that the administrators might want to edit can be set in the environment, but define defaults in
settings.py
, i.e. Instead of usingenv('xxxx')
we should useenv.str('xxxx', 'default_value')
.