14 lines
433 B
Python
14 lines
433 B
Python
import os
|
|
|
|
from channels.routing import ProtocolTypeRouter
|
|
from django.core.asgi import get_asgi_application
|
|
|
|
django_asgi_app = get_asgi_application()
|
|
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "plane.settings.production")
|
|
# Initialize Django ASGI application early to ensure the AppRegistry
|
|
# is populated before importing code that may import ORM models.
|
|
|
|
|
|
application = ProtocolTypeRouter({"http": get_asgi_application()})
|