wsgi.py 466 B

123456789101112131415161718
  1. # Copyright © 2023 Ingram Micro Inc. All rights reserved.
  2. """
  3. WSGI config for master_service project.
  4. It exposes the WSGI 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/wsgi/
  7. """
  8. import os
  9. from django.core.wsgi import get_wsgi_application
  10. os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'master_service.settings')
  11. application = get_wsgi_application()