Skip to content
Snippets Groups Projects
Select Git revision
  • 4c76d39313e79693687c64e5eaf99694048d4ce7
  • develop default
  • master protected
  • feature/add-oidc-support
  • 0.17
  • 0.16
  • 0.15
  • 0.14
  • 0.13
  • 0.12
  • 0.11
  • 0.10
  • 0.9
  • 0.8
  • 0.6
  • 0.5
  • 0.4
  • 0.3
  • 0.2
  • 0.1
20 results

wsgi.py

Blame
  • wsgi.py 406 B
    """WSGI config for sage_validation project.
    
    It exposes the WSGI callable as a module-level variable named ``application``.
    
    For more information on this file, see
    https://docs.djangoproject.com/en/5.1/howto/deployment/wsgi/
    """
    
    import os
    
    from django.core.wsgi import get_wsgi_application
    
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "sage_validation.settings")
    
    application = get_wsgi_application()