1234567891011121314151617181920212223242526 |
- """
- ASGI config for edan_v1 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/4.2/howto/deployment/asgi/
- """
-
- import os
- # import django
- import sys
- print(sys.version)
-
- print("ASGI~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~1")
- from django.core.asgi import get_asgi_application
- # from Django.core.asgi import get_asgi_application
-
- print("ASGI~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~2")
- print("ASGI~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~3")
-
-
- # os.environ.setdefault("DJANGO_SETTINGS_MODULE", "edan_v1.settings")
- os.environ.setdefault("DJANGO_SETTINGS_MODULE", "sandbox.settings")
-
- application = get_asgi_application()
|