Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

django-werkzeug-debugger-runserver

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-werkzeug-debugger-runserver

Replaces Django's runserver command with one that includes the Werkzeug debugger (shamelessly ripped out of django-extensions)

  • 0.3.1
  • PyPI
  • Socket score

Maintainers
1

django-werkzeug-debugger-runserver

This app extracts the runserver_plus_ management command from django-extensions_ and makes it available as a replacement for Django's default runserver management command.

Installation

Install from PyPI::

pip install django-werkzeug-debugger-runserver

Configuration

Edit your settings.py and include werkzeug_debugger_runserver in your INSTALLED_APPS before django.contrib.staticfiles::

INSTALLED_APPS = (
    # ...
    'werkzeug_debugger_runserver',
    'django.contrib.staticfiles',
    # ...
)

Usage

Start the development server using python manage.py runserver as usual. If you run into an error the debugger-enabled error view will be shown in the browser. If you want to force the debugger view to appear you can do it using something like raise Exception in your code.

.. _django-extensions: https://github.com/django-extensions/django-extensions/ .. _runserver_plus: http://packages.python.org/django-extensions/runserver_plus.html

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc