We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdfb210 commit 24ff59eCopy full SHA for 24ff59e
docker-compose.override.dev.yml
@@ -7,6 +7,7 @@ services:
7
environment:
8
PYTHONWARNINGS: error # We are strict about Warnings during development
9
DD_DEBUG: 'True'
10
+ DD_DJANGO_DEBUG_TOOLBAR_ENABLED: 'True'
11
DD_ADMIN_USER: "${DD_ADMIN_USER:-admin}"
12
DD_ADMIN_PASSWORD: "${DD_ADMIN_PASSWORD:-admin}"
13
DD_EMAIL_URL: "smtp://mailhog:1025"
dojo/urls.py
@@ -284,6 +284,6 @@ def drf_spectacular_preprocessing_filter_spec(endpoints):
284
285
286
if hasattr(settings, "DJANGO_DEBUG_TOOLBAR_ENABLED"):
287
- if settings.DEBUG_TOOLBAR_ENABLED:
+ if settings.DJANGO_DEBUG_TOOLBAR_ENABLED:
288
from debug_toolbar.toolbar import debug_toolbar_urls
289
urlpatterns += debug_toolbar_urls()
0 commit comments