diff --git a/backend/asgi.py b/backend/asgi.py index 14a707e..9e3ab25 100644 --- a/backend/asgi.py +++ b/backend/asgi.py @@ -13,4 +13,4 @@ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings') -application = get_asgi_application() +app = get_asgi_application() diff --git a/backend/settings/base.py b/backend/settings/base.py index 3b3f73d..81965e4 100644 --- a/backend/settings/base.py +++ b/backend/settings/base.py @@ -67,7 +67,7 @@ }, ] -WSGI_APPLICATION = 'backend.wsgi.application' +WSGI_APPLICATION = 'backend.wsgi.app' # Password validation # https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators diff --git a/backend/wsgi.py b/backend/wsgi.py index e40ee1e..b1c80a2 100644 --- a/backend/wsgi.py +++ b/backend/wsgi.py @@ -13,4 +13,4 @@ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings') -application = get_wsgi_application() +app = get_wsgi_application()