Metadata-Version: 1.1
Name: django-dmcadmin
Version: 0.1.1
Summary: Django Manage Command Admin - a web-based app for managing the execution of Django manage commands.
Home-page: https://github.com/hairetdin/django-dmcadmin
Author: hairetdin
Author-email: amir.hairetdinov@gmail.com
License: MIT
Description: ===========================
        Django Manage Command Admin
        ===========================
        
        DMCAdmin is a web-based app for managing the execution of Django manage commands.
        
        Store your manage commands in a table, run async through the web and view the result.
        
        Quick start
        -----------
        
        1. pip install django-dmcadmin
        
        2. Add "dmcadmin" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'dmcadmin',
            ]
        
        3. Include the dmcadmin URLconf in your project urls.py like this::
        
            url(r'^dmcadmin/', include('dmcadmin.urls')),
        
        4. Run `python manage.py migrate` to create the dmcadmin models.
        
        5. Start the development server and visit http://127.0.0.1:8000/dmcadmin/
           to run manage command.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
