django12factor
django12factor copied to clipboard
Making Django configuration more 12factor-y
testing...
@doismellburning 5 years ago I removed the pinned versions from setup.py. And then we never published a new package on pypi. So 1.3 which is still on pypi, still has...
PyPI lags behind quite a bit; eg. missing the ``TEMPLATE_DEBUG`` changes; would be great to have a new release there.
Both the `README.rst` and the RTD docs reference `django-12factor` but the published package is called `django12factor` on PyPI. So `pip install django-12factor` doesn't work (and worse, would install the wrong...
Django is unusable with in-memory SQLite, because there is no way to run both migrate and runserver on the same one. It's better to provide a default that's usable (and...
This boolean variable can be used to control if Django should interpret the X-Forwarded-Proto header, and assume user is using https when it says so. It's usually needed for deployments...
I think that most people using django12factor are using it in the "give me everything" mode (because otherwise they would use dj-database-url etc directly). This means, that they consider the...
line 118: `` sys.exit("""DEBUG is False but no SECRET_KEY is set in the environment - either it has been hardcoded (bad) or not set at all (bad) - exit()ing for...