1

test with nix build <...>

This commit is contained in:
2024-01-13 18:36:51 +02:00
parent e81eb6c6d2
commit 0a5abf6652
3 changed files with 22 additions and 6 deletions

View File

@@ -17,9 +17,11 @@ Including another URLconf
from django.contrib import admin
from django.urls import include, path
from django.conf import settings
urlpatterns = [
path('admin/', admin.site.urls),
path("__debug__/", include("debug_toolbar.urls")),
] + [
path("__debug__/", include("debug_toolbar.urls"))] if settings.DEBUG else [] + [
path('', include('signup.urls')),
]