feat(core): configure Django/Channels/ASGI settings and URL routing

This commit is contained in:
2026-04-28 12:36:32 +02:00
parent 538e88fff3
commit 9295617d8e
4 changed files with 142 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
from django.contrib import admin
from django.urls import path, include
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('chat.urls')),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) \
+ static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
handler404 = 'chat.views.handler404'
handler500 = 'chat.views.handler500'