Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
Tags
- SCALA APP
- tgw
- json
- Transit Gateway
- ai assistant
- ubuntu
- Eclipse
- Python
- VPC
- 툴바안뜸
- AWSKRUG
- Spark
- amazon q
- pyspark
- AI
- django
- git
- devops
- MongoDB
- mcponaws
- debug_toolbar
- AWS
- debug toolbar
- coding with ai
- list
- Amazon
- django-debug-toolbar
- nosql
Archives
- Today
- Total
목록debug toolbar (1)
STACKBASE
[Django] debug toolbar 설치
1. pip를 이용한 설치 python -m pip install django-debug-toolbar 2. Django project > settings.py 설정 # 1. APP 추가 INSTALLED_APPS = [ # ... "django.contrib.staticfiles", "debug_toolbar", ] # 2. Templates 설정 확인 TEMPLATES = [ { "BACKEND": "django.template.backends.django.DjangoTemplates", "APP_DIRS": True, # ... } ] # 3. MiddleWare 추가 MIDDLEWARE = [ # ... "debug_toolbar.middleware.DebugToolbarMiddleware", #..
프로그래밍/Django
2022. 1. 28. 22:20