Skip to Content

Django Integration

Documentation coming soon.

Quick Start

Django-CFG seamlessly integrates with Django’s settings system.

from django_cfg import DjangoConfig class MyConfig(DjangoConfig): project_name: str = "My Project" root_urlconf: str = "myproject.urls"

See Also