14 lines
448 B
Python
14 lines
448 B
Python
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'
|