Make Dev enters into the webserver shell.

Fixed database env variables to properly connect.
This commit is contained in:
WGAVermeer
2026-03-11 08:12:07 +01:00
parent c165c03579
commit 13a317d3df
4 changed files with 11 additions and 6 deletions

View File

@@ -14,9 +14,11 @@ 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'))
"""
from django.contrib import admin
from django.urls import path
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path("polls/", include("polls.urls")),
path("admin/", admin.site.urls),
]