Metadata-Version: 1.1
Name: djangoapps-company
Version: 1.0
Summary: lunchapp only chinese support
Home-page: no
Author: XUE QING
Author-email: xueqingwell@hotmail.com
License: BSD License
Description: =====
        djangoapps-company
        =====
        
        a simple web app build with django
        
        Quick start
        -----------
        
        1. Add "bases......" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
            'bases',
            'rest_framework',
            'rest_framework.authtoken',
            'rest_auth',
            'allauth',
            'allauth.account',
            'rest_auth.registration',
            'usercenter',
            'company',
            )
        
        2. Add " LOGIN_URL='/usercenter/login/' " to your INSTALLED_APPS setting like this::
        
        3. Include the  URLconf in your project urls.py like this::
        
            url(r'^rest-auth/', include('rest_auth.urls')),
            url(r'^rest-auth/registration/', include('rest_auth.registration.urls')),
            url(r'^usercenter/', include('usercenter.urls')),
            url(r'^account/',include('allauth.urls')),
            url(r'company/',include('company.urls'))
        
        4. Run `python manage.py migrate` to create the polls models.
        
        5. Visit http://127.0.0.1:8000/company/#/company_list/ to user the app.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
