asgi.py 467 B

12345678910111213141516171819
  1. # Copyright © 2023 Ingram Micro Inc. All rights reserved.
  2. """
  3. ASGI config for master_service project.
  4. It exposes the ASGI callable as a module-level variable named ``application``.
  5. For more information on this file, see
  6. https://docs.djangoproject.com/en/3.2/howto/deployment/asgi/
  7. """
  8. import os
  9. from django.core.asgi import get_asgi_application
  10. os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'master_service.settings')
  11. application = get_asgi_application()