mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
45a52116a7
* refactor: move issue activity tracking from django channels to rqworker * refactor: update old value and new value from character type to text type
19 lines
454 B
Python
19 lines
454 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(),
|
|
}
|
|
)
|