This commit is contained in:
2026-04-05 00:57:50 +03:30
parent 24b90a8c81
commit 26a587fe09
18 changed files with 381 additions and 361 deletions
+3
View File
@@ -1,7 +1,10 @@
from django.contrib import admin
from django.urls import include, path
from ingest.views import SensorSimulatorAppView
urlpatterns = [
path("admin/", admin.site.urls),
path("", SensorSimulatorAppView.as_view(), name="home"),
path("api/ingest/", include("ingest.urls")),
]