wsgi.py 396 B

123456789101112131415
  1. """WSGI config for telecaster project.
  2. It exposes the WSGI callable as a module-level variable named ``application``.
  3. For more information on this file, see
  4. https://docs.djangoproject.com/en/4.0/howto/deployment/wsgi/
  5. """
  6. import os
  7. from django.core.wsgi import get_wsgi_application
  8. os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'telecaster.settings')
  9. application = get_wsgi_application()