This commit is contained in:
Dominic 2025-11-02 20:23:40 -05:00
parent 5cc1d044b6
commit 3d918bf7a4

View file

@ -1,16 +1,16 @@
""" """
WSGI config for cwr project. WSGI config for korabo project.
It exposes the WSGI callable as a module-level variable named ``application``. It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see For more information on this file, see
https://docs.djangoproject.com/en/5.2/howto/deployment/wsgi/ https://docs.djangoproject.com/en/5.1/howto/deployment/wsgi/
""" """
import os import os
from django.core.wsgi import get_wsgi_application from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'cwr.settings') os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'wsgi.settings')
application = get_wsgi_application() application = get_wsgi_application()