Add migrations

This commit is contained in:
2024-12-11 06:01:09 +01:00
parent 42e9a5a7ed
commit daead80fdc
16 changed files with 7897 additions and 18 deletions

View File

@ -1,8 +1,13 @@
import os
from __future__ import annotations
import os
from typing import TYPE_CHECKING
from django.core.handlers.wsgi import WSGIHandler
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="core.settings")
application: WSGIHandler = get_wsgi_application()