Set up the required directory layout, app scaffolding, core settings, templates, static assets, and Docker/Tailwind tooling to establish a standardized development baseline.
9 lines
248 B
Python
9 lines
248 B
Python
import os
|
|
|
|
from django_tenants.asgi import TenantASGIHandler
|
|
from django.core.asgi import get_asgi_application
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings.development")
|
|
|
|
application = TenantASGIHandler(get_asgi_application())
|