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

12
survey_service/urls.py Normal file
View File

@@ -0,0 +1,12 @@
"""Root URL routes for the survey service."""
from django.contrib import admin
from django.urls import include, path
from django.views.generic import TemplateView
urlpatterns = [
path("", TemplateView.as_view(template_name="welcome.html"), name="welcome"),
path("docs/", TemplateView.as_view(template_name="docs.html"), name="docs"),
path("admin/", admin.site.urls),
path("api/", include("surveys.urls")),
]