Metadata-Version: 1.1
Name: django-bugout
Version: 0.9
Summary: An awesome Django app to hack DEBUG=False become True
Home-page: https://www.cloudjetkpi.com/
Author: Thoi Ngoc Quoc Duan
Author-email: duan@cjs.vn/quocduan@gmail.com
License: CLOUDJET SOLUTIONS License
Description-Content-Type: UNKNOWN
Description: =====
        Django-bugout
        =====
        Django-bugout is a awesome app to allow us can view "full debug info" from frontend in Production server, which set DEBUG=False.
        Everything output exactly the same with case of DEBUG=True
        
        Quick start
        -----------
        
        1. Add "django_bugout" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'django_bugout',
            ]
        
        2. Include the polls URLconf in your project urls.py like this::
        
            path('django_bugout/', include('django_bugout.urls')),
        
        3. Change your settings.py to DEBUG=False
        4. Start the development server and visit http://127.0.0.1:8000/django_bugout
           to input what page you want examine.
        
           Sample:
        	/myweb/someapi/
           Note: URI input must not allow domain & protocol
        
        ========================================================================================
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.9
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
