Первый коммит

This commit is contained in:
greyjoy
2026-07-31 00:49:40 +04:00
parent 618d5b3a65
commit b53aa305e8
20 changed files with 753 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
"""WSGI configuration for the teacher site."""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
application = get_wsgi_application()