장고 디버그툴바
https://django-debug-toolbar.readthedocs.io/en/latest/index.html
DEBUG = True
if DEBUG:
INSTALLED_APPS += [
'debug_toolbar',
]
if DEBUG:
MIDDLEWARE += [
'debug_toolbar.middleware.DebugToolbarMiddleware',
] + MIDDLEWARE
INTERNAL_IPS = [
"127.0.0.1",
]
if settings.DEBUG:
urlpatterns += [
path("__debug__/", include("debug_toolbar.urls")),
]
'ㅇㅅㅇ' 카테고리의 다른 글
[git] 폴더 배열 수정하고 싶어 (0) | 2024.09.12 |
---|---|
[django] 장고 시작 (0) | 2024.09.12 |
09.03. 라디오 (0) | 2024.09.03 |
08.30. 라디오 (1) | 2024.08.30 |
파이참 - Ctrl + 휠로 글자 크기 컨트롤 (0) | 2024.07.15 |