webhook_logger/webhook_logger/asgi.py

13 lines
323 B
Python
Raw Normal View History

"""
ASGI entrypoint. Configures Django and then runs the application
defined in the ASGI_APPLICATION setting.
"""
import os
import django
from channels.routing import get_default_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "webhook_logger.settings")
django.setup()
application = get_default_application()