Skip to content
Snippets Groups Projects
Select Git revision
  • 77b366b269a3a93af0aa325697a360bdecc49cd3
  • develop default protected
  • redploy-placement-port
  • master protected
  • feature/NAT-1574-add-moodi-for-ixs
  • authorship-fix-from-develop
  • 1048-service-config-backfilling
  • feature/nat-1211-edgeport-lacp-xmit
  • fix/nat-1120-sdp-validation
  • NAT-1154-import-edge-port-update
  • fix/l3-imports
  • feature/10GGBS-NAT-980
  • fix/NAT-1009/fix-redeploy-base-config-if-there-is-a-vprn
  • 4.12
  • 4.11
  • 4.10
  • 4.8
  • 4.5
  • 4.4
  • 4.3
  • 4.2
  • 4.1
  • 4.0
  • 3.12
  • 3.11
  • 3.10
  • 3.9
  • 3.8
  • 3.7
  • 3.6
  • 3.5
  • 3.4
  • 3.3
33 results

helpers.py

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