Initial project

This commit is contained in:
2026-05-02 03:57:17 +03:30
parent 38b6165497
commit 67e78b2a46
27 changed files with 2805 additions and 2 deletions

9
survey_service/wsgi.py Normal file
View File

@@ -0,0 +1,9 @@
"""WSGI config for the survey service."""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "survey_service.settings")
application = get_wsgi_application()