Add Django project
This commit is contained in:
8
core/wsgi.py
Normal file
8
core/wsgi.py
Normal file
@ -0,0 +1,8 @@
|
||||
import os
|
||||
|
||||
from django.core.handlers.wsgi import WSGIHandler
|
||||
from django.core.wsgi import get_wsgi_application
|
||||
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "core.settings")
|
||||
|
||||
application: WSGIHandler = get_wsgi_application()
|
Reference in New Issue
Block a user