Hanny
Hanny
I have the following in a wsgi.py: ``` PROJECT_ROOT = Path(__file__).resolve().parent.parent import environ env = environ.Env( DJANGO_SETTINGS_MODULE=(str, "myapp.settings.base"), ) # Read the .env and override any existing environment variables env.read_env(PROJECT_ROOT...
I was a little curious - in all the documentation it says to do something like this: ``` env = environ.Env( # set casting, default DEBUG=(bool, False), ) DEBUG=env("DEBUG") #...
#### Trac ticket number ticket-35813 #### Branch description Unmanaged models had no history of alterations being done to them. This PR fixes that issue so that any changes made to...