Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
eLQeR committed Feb 12, 2024
1 parent ced8e27 commit 5e6c4a4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions taxi_service/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
"django.contrib.messages",
"django.contrib.staticfiles",
"taxi",
"debug_toolbar",
]

MIDDLEWARE = [
Expand All @@ -51,7 +50,6 @@
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
"django.middleware.clickjacking.XFrameOptionsMiddleware",
"debug_toolbar.middleware.DebugToolbarMiddleware",
]

ROOT_URLCONF = "taxi_service.urls"
Expand Down Expand Up @@ -136,7 +134,3 @@
# https://docs.djangoproject.com/en/4.0/ref/settings/#default-auto-field

DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"

INTERNAL_IPS = [
"127.0.0.1",
]
1 change: 0 additions & 1 deletion taxi_service/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

urlpatterns = [path("admin/", admin.site.urls),
path("", include("taxi.urls", namespace="taxi")),
path("__debug__/", include("debug_toolbar.urls")),
path("accounts/", include("django.contrib.auth.urls")),
] + static(
settings.STATIC_URL,
Expand Down

0 comments on commit 5e6c4a4

Please sign in to comment.