Skip to content
Snippets Groups Projects
Select Git revision
  • dcc1a6c6ee790dc5b6ad52be52ee719d4d893425
  • main default protected
  • renovate/sentry-sdk-2.x
  • renovate/django-5.x
  • renovate/whitenoise-6.x
  • develop protected
  • new-changes
  • v3.0.3
  • v3.0.2
  • v3.0.2-develop.1
  • v3.0.1
  • v3.0.0-develop.1
  • v3.0.0
  • v2.1.0
  • v2.0.3
  • v2.0.2
  • v2.0.1
  • v2.0.0
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.1
  • v1.0.0
23 results

settings.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    asgi.py 388 B
    """
    ASGI config for wedding 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/4.1/howto/deployment/asgi/
    """
    
    import os
    
    from django.core.asgi import get_asgi_application
    
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "core.settings")
    
    application = get_asgi_application()