This commit is contained in:
2024-12-08 15:16:43 +03:00
parent ed33722449
commit 8fb349d74b
17 changed files with 251 additions and 4 deletions

View File

@@ -48,7 +48,8 @@ INSTALLED_APPS = [
'web.apps.WebConfig',
'configs.apps.ConfigsConfig',
'experiments.apps.ExperimentsConfig',
'stats.apps.StatsConfig'
'stats.apps.StatsConfig',
'schemas.apps.SchemasConfig',
]
MIDDLEWARE = [

View File

@@ -21,5 +21,6 @@ urlpatterns = [
path('configs/', include('configs.urls')),
path('experiments/', include('experiments.urls')),
path('stats/', include('stats.urls')),
path('schemas/', include('schemas.urls')),
path('', include('web.urls'))
]