kenken999's picture
Merge branch 'main' of https://huggingface.co/spaces/kenken999/fastapi_django_main
c84b7aa
raw
history blame
407 Bytes
"""
WSGI config for diamond_project 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.0/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'diamond_project.settings')
application = get_wsgi_application()