17 lines
501 B
Python
17 lines
501 B
Python
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
from django.contrib import admin
|
|
from django.urls import include, path
|
|
|
|
|
|
urlpatterns = [
|
|
path("admin/", admin.site.urls),
|
|
path("", include("apps.scenarios.urls")),
|
|
path("chat/", include("apps.chat.urls")),
|
|
path("documents/", include("apps.documents.urls")),
|
|
path("audit/", include("apps.audit.urls")),
|
|
]
|
|
|
|
if settings.DEBUG:
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|