Metadata-Version: 1.0
Name: django-console
Version: 0.2
Summary: bash console in the browser for django admins
Home-page: http://github.com/atmb4u/django-console
Author: Anoop Thomas Mathew
Author-email: atmb4u@gmail.com
License: BSD Licence, see LICENCE.txt
Description: Django-Console
        ==============
        
        bash console in the browser
        
        ## Installation
        
        pip insall django-console
        
        include _django-console_ into INSTALLED_APPS ```settings.py```
        
        ```
        INSTALLED_APPS = (
            'django.contrib.auth',
            'django.contrib.contenttypes',
            'django.contrib.sessions',
            'django.contrib.sites',
            'django.contrib.messages',
            'django.contrib.staticfiles',
            'django.contrib.admin',
            'django-console'
        )
        ```
        
        in your browser, goto
        
        http://127.0.0.1:8000/admin/console/
        
        NB: make sure you got superuser privilages.
        
        
        ##Tip
        To run sudo tasks, you can use
        
        ```
        echo mypassword | sudo -S command
        ```
        
        
        
Platform: UNKNOWN
