# Requirements update

* updates requirements.txt
* drops debug-toolbar
This commit is contained in:
2024-06-14 07:42:17 +02:00
parent c9aeb393b5
commit 35b1409359
3 changed files with 19 additions and 55 deletions
-6
View File
@@ -13,7 +13,6 @@ Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
import debug_toolbar
from django.contrib import admin
from django.urls import path, include
@@ -47,10 +46,5 @@ urlpatterns = [
path('client/proxy/wfs', ClientProxyParcelWFS.as_view(), name="client-proxy-wfs"),
]
if DEBUG:
urlpatterns += [
path('__debug__/', include(debug_toolbar.urls)),
]
handler404 = "konova.views.error.get_404_view"
handler500 = "konova.views.error.get_500_view"