Add initial project structure and configuration files

This commit is contained in:
Joakim Hellsén 2026-03-22 20:02:16 +01:00
commit 988d131c49
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
13 changed files with 688 additions and 20 deletions

14
config/wsgi.py Normal file
View file

@ -0,0 +1,14 @@
import os
from typing import TYPE_CHECKING
from django.core.wsgi import get_wsgi_application
if TYPE_CHECKING:
from django.core.handlers.wsgi import WSGIHandler
os.environ.setdefault(
key="DJANGO_SETTINGS_MODULE",
value="config.settings",
)
application: WSGIHandler = get_wsgi_application()