PyRunner / pyrunner /asgi.py
Akoda35's picture
Upload 7 files
12a8d6a verified
Raw
History Blame Contribute Delete
393 Bytes
"""
ASGI config for pyrunner project.
It exposes the ASGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/6.0/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pyrunner.settings")
application = get_asgi_application()