mirror of
https://github.com/django-components/django-components.git
synced 2025-07-13 11:54:59 +00:00
23 lines
650 B
Python
23 lines
650 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/"],
|
|
}
|
|
],
|
|
COMPONENTS={"template_cache_size": 128},
|
|
MIDDLEWARE=["django_components.middleware.ComponentDependencyMiddleware"],
|
|
DATABASES={
|
|
"default": {
|
|
"ENGINE": "django.db.backends.sqlite3",
|
|
"NAME": ":memory:",
|
|
}
|
|
},
|
|
)
|
|
|
|
django.setup()
|