Add Django project

This commit is contained in:
2023-12-23 22:52:34 +01:00
parent e10ea4eb07
commit 4e241e44ab
12 changed files with 192 additions and 0 deletions

8
core/wsgi.py Normal file
View 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()