27 lines
550 B
Python
27 lines
550 B
Python
"""
|
|
WSGI config for 不夜城考试 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
|
|
|
|
from os.path import join,dirname,abspath
|
|
|
|
|
|
PROJECT_DIR = dirname(dirname(abspath(__file__)))#3
|
|
import sys # 4
|
|
sys.path.insert(0,PROJECT_DIR) # 5
|
|
|
|
|
|
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'CyberExam.settings')
|
|
|
|
application = get_wsgi_application()
|