From 56160120878c89efb510440adcdd310b88731a97 Mon Sep 17 00:00:00 2001 From: Sean Morley Date: Mon, 8 Jul 2024 11:59:16 -0400 Subject: [PATCH] chore: Add vercel variable to wsgi.py --- backend/server/demo/wsgi.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/server/demo/wsgi.py b/backend/server/demo/wsgi.py index 863501d..71ca83e 100644 --- a/backend/server/demo/wsgi.py +++ b/backend/server/demo/wsgi.py @@ -14,3 +14,5 @@ from django.core.wsgi import get_wsgi_application os.environ.setdefault("DJANGO_SETTINGS_MODULE", "demo.settings") application = get_wsgi_application() +# add this vercel variable +app = application