Skip to content
Snippets Groups Projects
Select Git revision
  • ceeb8b0dccb453dc435ee94c1a820a47a85071d8
  • test default
  • master protected
3 results

wsgi.py

Blame
  • user avatar
    Tomáš authored
    adb98101
    History
    wsgi.py 393 B
    """
    WSGI config for registry 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/4.0/howto/deployment/wsgi/
    """
    
    import os
    
    from django.core.wsgi import get_wsgi_application
    
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "registry.settings")
    
    application = get_wsgi_application()