mirror of
https://github.com/django-components/django-components.git
synced 2025-08-18 21:20:14 +00:00
12 lines
320 B
Python
12 lines
320 B
Python
import django
|
|
from django.conf import settings
|
|
|
|
if not settings.configured:
|
|
settings.configure(
|
|
INSTALLED_APPS=('django_components',),
|
|
TEMPLATES=[{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'DIRS': ["tests/templates/"],
|
|
}]
|
|
)
|
|
django.setup()
|