django12factor
django12factor copied to clipboard
Support for defaults from settings.py
I want developers to be able to run manage.py runserver
without having to set any env vars, and just use the values from settings.py.
Right now, I think django12factor requires that either DEBUG
or SECRET_KEY
are set in the environment. I understand that you want to safeguard against accidentally setting DEBUG
to True
.
Maybe an additional setting D12F_INSECURE
? Or maybe PR #19 already supports my usecase?
I think django12factor requires that either DEBUG or SECRET_KEY are set in the environment.
I think I consider that a bug. Cheers.