Metadata-Version: 2.1
Name: django-configurator
Version: 1.0.0
Summary: Supports using class based settings for  Django and supports various setting object types with validation..
Author-Email: Christopher Broderick <chris@uhurutechnology.com>
License: BSD
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.1
Classifier: Framework :: Django :: 4.2
Classifier: Framework :: Django :: 5.0
Classifier: Framework :: Django :: 5.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Project-URL: Homepage, https://django-configurator.readthedocs.io/
Project-URL: Source, https://github.com/UhuruTechnology/django-configurator
Requires-Python: <4.0,>=3.10
Requires-Dist: django>=4.1
Provides-Extra: cache
Requires-Dist: django-cache-url; extra == "cache"
Provides-Extra: database
Requires-Dist: dj-database-url; extra == "database"
Provides-Extra: email
Requires-Dist: dj-email-url; extra == "email"
Provides-Extra: search
Requires-Dist: dj-search-url; extra == "search"
Provides-Extra: testing
Requires-Dist: dj-database-url; extra == "testing"
Requires-Dist: dj-email-url; extra == "testing"
Requires-Dist: dj-search-url; extra == "testing"
Requires-Dist: django-cache-url>=1.0.0; extra == "testing"
Description-Content-Type: text/x-rst

django-configurator |latest-version|
======================================

|build-status| |codecov| |docs| |python-support| |django-support|

django-configurator eases Django project configuration by relying
on the composability of Python classes. It extends the notion of
Django's module based settings loading with well established
object oriented programming patterns.

Check out the `documentation`_ for more complete examples.

.. |latest-version| image:: https://img.shields.io/pypi/v/django-configurator.svg
   :target: https://pypi.python.org/pypi/django-configurator
   :alt: Latest version on PyPI

.. |build-status| image:: https://github.com/UhuruTechnology/django-configurator/workflows/Test/badge.svg
   :target: https://github.com/UhuruTechnology/django-configurator/actions
   :alt: Build Status

.. |codecov| image:: https://codecov.io/github/UhuruTechnology/django-configurator/coverage.svg?branch=master
   :target: https://codecov.io/github/UhuruTechnology/django-configurator?branch=master
   :alt: Test coverage status

.. |docs| image:: https://img.shields.io/readthedocs/django-configurator/latest.svg
   :target: https://readthedocs.org/projects/django-configurator/
   :alt: Documentation status

.. |python-support| image:: https://img.shields.io/pypi/pyversions/django-configurator.svg
   :target: https://pypi.python.org/pypi/django-configurator
   :alt: Supported Python versions

.. |django-support| image:: https://img.shields.io/pypi/djversions/django-configurator
   :target: https://pypi.org/project/django-configurator
   :alt: Supported Django versions

.. _documentation: https://django-configurator.readthedocs.io/en/latest/

Quickstart
----------

Install django-configurator:

.. code-block:: console

    $ python -m pip install django-configurator

or, alternatively, if you want to use URL-based values:

.. code-block:: console

    $ python -m pip install django-configurator[cache,database,email,search]

Then subclass the included ``dj_configurator.Configuration`` class in your
project's **settings.py** or any other module you're using to store the
settings constants, e.g.:

.. code-block:: python

    # mysite/settings.py

    from dj_configurator import Configuration

    class Dev(Configuration):
        DEBUG = True

Set the ``DJANGO_CONFIGURATION`` environment variable to the name of the class
you just created, e.g. in bash:

.. code-block:: console

    $ export DJANGO_CONFIGURATION=Dev

and the ``DJANGO_SETTINGS_MODULE`` environment variable to the module
import path as usual, e.g. in bash:

.. code-block:: console

    $ export DJANGO_SETTINGS_MODULE=mysite.settings

*Alternatively* supply the ``--configuration`` option when using Django
management commands along the lines of Django's default ``--settings``
command line option, e.g.

.. code-block:: console

    $ python -m manage runserver --settings=mysite.settings --configuration=Dev

To enable Django to use your configuration you now have to modify your
**manage.py**, **wsgi.py** or **asgi.py** script to use django-configurator's versions
of the appropriate starter functions, e.g. a typical **manage.py** using
django-configurator would look like this:

.. code-block:: python

    #!/usr/bin/env python

    import os
    import sys

    if __name__ == "__main__":
        os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.settings')
        os.environ.setdefault('DJANGO_CONFIGURATION', 'Dev')

        from dj_configurator.management import execute_from_command_line

        execute_from_command_line(sys.argv)

Notice in line 10 we don't use the common tool
``django.core.management.execute_from_command_line`` but instead
``dj_configurator.management.execute_from_command_line``.

The same applies to your **wsgi.py** file, e.g.:

.. code-block:: python

    import os

    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.settings')
    os.environ.setdefault('DJANGO_CONFIGURATION', 'Dev')

    from dj_configurator.wsgi import get_wsgi_application

    application = get_wsgi_application()

Here we don't use the default ``django.core.wsgi.get_wsgi_application``
function but instead ``dj_configurator.wsgi.get_wsgi_application``.

Or if you are not serving your app via WSGI but ASGI instead, you need to modify your **asgi.py** file too.:

.. code-block:: python

    import os

    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.settings')
    os.environ.setdefault('DJANGO_CONFIGURATION', 'Dev')

    from dj_configurator.asgi import get_asgi_application

    application = get_asgi_application()

That's it! You can now use your project with ``manage.py`` and your favorite
WSGI/ASGI enabled server.
