Metadata-Version: 1.0
Name: django-console
Version: 0.3
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 LICENSE
Description: ![Django-Console](https://raw.github.com/atmb4u/djano-console/master/django-console/static/images/console.png)
        Django-Console
        ==============
        
        bash console in the browser
        
        ## Installation
        
        pip install 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'
        )
        ```
        
        ##Screenshots
        
        in your browser, goto
        
        http://127.0.0.1:8000/admin/console/
        
        ![Django-Console](https://raw.github.com/atmb4u/djano-console/master/django-console/static/images/screeshot.png)
        
        NB: make sure you got superuser privileges.
        
        
        ##Tip
        To run sudo tasks, you can use
        
        ```
        echo mypassword | sudo -S command
        ```
        
        Eg: echo pa$$w0rD | sudo -S service nginx restart
        
        ## LICENSE
        
        BSD License - checkout LICENSE file for the complete license document
        
        
        
Platform: UNKNOWN
