重命名工程 qduoj -> oj

This commit is contained in:
virusdefender
2015-08-02 08:59:01 +08:00
parent 4f40f28a8a
commit 4d2a5c129e
7 changed files with 5 additions and 9 deletions

16
oj/wsgi.py Normal file
View File

@@ -0,0 +1,16 @@
"""
WSGI config for qduoj 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/1.8/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "oj.settings")
application = get_wsgi_application()