Metadata-Version: 1.1
Name: django-bobgogo
Version: 0.6
Summary: A simple Django app to record tasks for you.
Home-page: https://github.com/liujinliu/bobgogo
Author: liujinliu
Author-email: 514371547@qq.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Description: bobgogo
        =============
        bobgogo is a simple Django app to record tasks for you.  
        You can create task with diffrent paras via admin page.  
        Then users can commit task through the custom page.  
        
        Quick start
        ~~~~~~~~~~~~~~~
        
        1. Install
        
        ::
        
            # install from pypi
            pip install django-bobgogo
            # install from source
            make build
            make install
        
        2. Add "bob" to your INSTALLED_APPS setting like this
        
        ::
        
            INSTALLED_APPS = [
                ...
                'bob',
            ]
        
        3. Include the URLconf in your project urls.py like this
        
        ::
        
            path('bob/', include('bob.urls')),
        
        4. Run `python manage.py migrate` to create the models.
        
        5. Start the development server and visit http://127.0.0.1:8000/admin/
           to create a task (you'll need the Admin app enabled).
        
        6. Visit http://127.0.0.1:8000/bob/ and you can see what happened.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
