Metadata-Version: 2.1
Name: django-debugger
Version: 0.3
Summary: A simple plugin to attach a debugger in Django during runserver
Home-page: https://github.com/sajalshres/django-debugger
Author: Sajal Shrestha
Author-email: sajal.shres@gmail.com
License: MIT
Description: # django-debugger
        
        A simple plugin to attach a debugger in Django during runserver
        
        # Installation
        
        ```bash
        pip install django-debugger
        ```
        
        # Usage
        
        1. Prepend django_debugger to top of the **INSTALLED_APPS**
        
            ```python
        
            INSTALLED_APPS = [
                "django_debugger",
                ...
            ]
            ```
        
        2. Add `--enable-debugger` argument to runserver command
        
            ```bash
            python manage.py runserver ---enable-debugger 0.0.0.0:8000
            ```
        
            **OR**
        
            Add `DEBUGGER_ENABLE = True` to settings file.
        
        # Settings Variables
        
        - `DEBUGGER_ENABLE = True` : Attaches debugger.
        - `DEBUGGER_ADDRESS = "0.0.0.0"` : Address to listen for remote debugging
        - `DEBUGGER_PORT = 5678` : Port to listen for remote debugging
        - `DEBUGGER_WAIT_FOR_ATTACH = False` : Wait for debugger to attach before continuing.
        
Keywords: DJANGO,DEBUGGER,DEBUGPY,PYTHON
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
