Metadata-Version: 1.1
Name: django-auth-rbac
Version: 0.0.1
Summary: A role-based access control(RBAC) practice via Django.
Home-page: https://github.com/luizyao/django-rbac
Author: Luiz Yao
Author-email: luizyao@163.com
License: MIT
Description-Content-Type: UNKNOWN
Description: ====
        RBAC
        ====
        
        A role-based access control(RBAC) practice via Django. 
        
        Quick start
        -----------
        
        1. Add "rbac" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'rbac',
            ]
        
        2. Add AUTH_USER_MODEL setting with "rbac.User" like this::
        
            AUTH_USER_MODEL = 'rbac.User'
        
        3. Run `python manage.py migrate` to create the rbac models. (MUST after step3)
        
        4. Start the development server and visit http://127.0.0.1:8000/admin/
           to check rbac models (you'll need the Admin app enabled).
        
        Known issues
        ------------
        
        1. Execute migrate operator still create "auth_group" table in the database.
Keywords: django,rbac
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
