This commit is contained in:
github
2019-07-15 20:16:56 +08:00
parent 2bef05016e
commit 114efffa83
44 changed files with 2470 additions and 0 deletions

16
pwdselfservice/wsgi.py Normal file
View File

@@ -0,0 +1,16 @@
"""
WSGI config for pwdselfservice 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', 'pwdselfservice.settings')
application = get_wsgi_application()