diff --git a/cwr/wsgi.py b/cwr/wsgi.py index 67ac14f..f33d104 100644 --- a/cwr/wsgi.py +++ b/cwr/wsgi.py @@ -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``. 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 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()