sims/simsV4BE/wsgi.py
Your Name 8d1d44bee7 init
2025-01-16 17:47:49 +08:00

17 lines
409 B
Python
Executable File

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