{"id":13814321,"url":"https://github.com/recamshak/django-debug-panel","last_synced_at":"2025-05-16T03:06:06.558Z","repository":{"id":8787193,"uuid":"10477374","full_name":"recamshak/django-debug-panel","owner":"recamshak","description":"django-debug-toolbar in WebKit DevTools. Works fine with background Ajax requests and non-HTML responses.","archived":false,"fork":false,"pushed_at":"2020-01-09T08:20:47.000Z","size":49,"stargazers_count":403,"open_issues_count":19,"forks_count":69,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-05-09T16:13:42.965Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/recamshak.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-06-04T11:45:35.000Z","updated_at":"2025-03-24T09:48:05.000Z","dependencies_parsed_at":"2022-08-27T10:50:17.983Z","dependency_job_id":null,"html_url":"https://github.com/recamshak/django-debug-panel","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/recamshak%2Fdjango-debug-panel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/recamshak%2Fdjango-debug-panel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/recamshak%2Fdjango-debug-panel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/recamshak%2Fdjango-debug-panel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/recamshak","download_url":"https://codeload.github.com/recamshak/django-debug-panel/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254459088,"owners_count":22074605,"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":[],"created_at":"2024-08-04T04:01:53.019Z","updated_at":"2025-05-16T03:06:01.543Z","avatar_url":"https://github.com/recamshak.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"==================\nDjango Debug Panel\n==================\n\nDjango Debug Toolbar inside WebKit DevTools. Works fine with background AJAX requests and non-HTML responses.\nGreat for single-page applications and other AJAX intensive web applications.\n\nInstallation\n============\n\n#. Install and configure `Django Debug Toolbar \u003chttps://github.com/django-debug-toolbar/django-debug-toolbar\u003e`_\n\n#. Install Django Debug Panel:\n\n   .. code-block:: bash\n\n    pip install django-debug-panel\n\n#. Add ``debug_panel`` to your ``INSTALLED_APPS`` setting:\n\n   .. code-block:: python\n\n    INSTALLED_APPS = (\n        # ...\n        'debug_panel',\n    )\n\n#. Replace the Django Debug Toolbar middleware with the Django Debug Panel one. Replace:\n\n   .. code-block:: python\n\n    MIDDLEWARE_CLASSES = (\n        ...\n        'debug_toolbar.middleware.DebugToolbarMiddleware',\n        ...\n    )\n\n   with:\n\n   .. code-block:: python\n\n    MIDDLEWARE_CLASSES = (\n        ...\n        'debug_panel.middleware.DebugPanelMiddleware',\n        ...\n    )\n\n\n#. (Optional) Configure your cache.\n   All the debug data of a request are stored into the cache backend ``debug-panel``\n   if available. Otherwise, the ``default`` backend is used, and finally if no caches are\n   defined it will fallback to a local memory cache.\n   You might want to configure the ``debug-panel`` cache in your ``settings``:\n\n   .. code-block:: python\n\n    CACHES = {\n        'default': {\n            'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',\n            'LOCATION': '127.0.0.1:11211',\n        },\n\n        # this cache backend will be used by django-debug-panel\n        'debug-panel': {\n            'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',\n            'LOCATION': '/var/tmp/debug-panel-cache',\n            'OPTIONS': {\n                'MAX_ENTRIES': 200\n            }\n        }\n    }\n\n#. Install the Chrome extension `Django Debug Panel \u003chttps://chrome.google.com/webstore/detail/django-debug-panel/nbiajhhibgfgkjegbnflpdccejocmbbn\u003e`_\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frecamshak%2Fdjango-debug-panel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frecamshak%2Fdjango-debug-panel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frecamshak%2Fdjango-debug-panel/lists"}