1
0
Files
medical-notes/quiz/wsgi.py
Johan Dahlin 2ec904d899
All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 2m30s
vault backup: 2025-12-21 20:21:58
2025-12-21 20:21:58 +01:00

18 lines
384 B
Python

"""
WSGI config for quiz 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/stable/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'settings')
application = get_wsgi_application()