This commit is contained in:
ygm1881
2022-04-16 00:15:57 +08:00
committed by ladeng07
parent f0389a8c8e
commit d8d21473a1
9 changed files with 212 additions and 3 deletions
+16
View File
@@ -0,0 +1,16 @@
"""
WSGI config for it 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/4.0/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'it.settings')
application = get_wsgi_application()