{"id":21165690,"url":"https://github.com/subhamghimire/django-debug","last_synced_at":"2025-07-04T16:03:54.100Z","repository":{"id":125094223,"uuid":"195056349","full_name":"subhamghimire/Django-Debug","owner":"subhamghimire","description":"This is the repository for django debug stuffs","archived":false,"fork":false,"pushed_at":"2019-07-03T13:52:10.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-01-21T10:09:35.416Z","etag":null,"topics":["django","django-debug","django-debug-toolbar"],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/subhamghimire.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-07-03T13:13:09.000Z","updated_at":"2019-07-03T13:53:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"4a297021-1538-44e2-a453-04465df1ecbf","html_url":"https://github.com/subhamghimire/Django-Debug","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhamghimire%2FDjango-Debug","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhamghimire%2FDjango-Debug/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhamghimire%2FDjango-Debug/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhamghimire%2FDjango-Debug/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/subhamghimire","download_url":"https://codeload.github.com/subhamghimire/Django-Debug/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243615242,"owners_count":20319724,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","django-debug","django-debug-toolbar"],"created_at":"2024-11-20T14:44:41.092Z","updated_at":"2025-03-14T16:44:04.486Z","avatar_url":"https://github.com/subhamghimire.png","language":null,"readme":"\n:heart:Install django debug toolbar on your system:   [![](https://img.shields.io/badge/pip-django__toolbar-yellowgreen.svg)](https://pypi.org/project/django-debug-toolbar/)\n\n\u003ccode\u003epip install django-debug-toolbar\u003c/code\u003e\n\u003ch3\u003eIn settings.py Do Following\u003c/h3\u003e\n\u003ccode\u003e\u003cpre\u003eINSTALLED_APPS = [\n    # ...\n    'django.contrib.staticfiles',\n    # ...\n    'debug_toolbar',]\nSTATIC_URL = '/static/'\n\u003c/pre\u003e\u003c/code\u003e\n\n*Enable Middleware*:\n\u003ccode\u003e\u003cpre\u003eMIDDLEWARE = [\n    # ...\n    'debug_toolbar.middleware.DebugToolbarMiddleware',\n    # ...]\n\u003c/pre\u003e\u003c/code\u003e\n\n*Configure internal ips*:\n\u003ccode\u003e\u003cpre\u003eINTERNAL_IPS = [\n    # ...\n    '127.0.0.1',\n    # ...]\n\u003c/pre\u003e\u003c/code\u003e\n\n\u003ch3\u003eIn The Project's urls.py Do Following\u003c/h3\u003e\n\n_Setting up url conf_:\n\u003cpre\u003e\nfrom django.conf import settings\nfrom django.conf.urls import include, url # For django versions before 2.0from django.urls import include, path # For django versions from 2.0 and up \n\nif settings.DEBUG:\n    import debug_toolbar\n    urlpatterns = [\n        path('__debug__/', include(debug_toolbar.urls)),\n        # For django versions before 2.0:\n        # url(r'^__debug__/', include(debug_toolbar.urls)),\n    ] + urlpatterns\n\u003c/pre\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsubhamghimire%2Fdjango-debug","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsubhamghimire%2Fdjango-debug","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsubhamghimire%2Fdjango-debug/lists"}