Authorize
Authorize is a simple Django authentication app to to provide role based authentication for users.
Detailed documentation will be uploaded soon.
Quick start
Install "authorize" like this:
pip install django-authorize
Add "authorize" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'authorize', ]
Include the authorize URLconf in your project urls.py like this:
path('auth/', include('authorize.urls')),
Include the authorize API URLconf in your project urls.py like this:
path('auth/api/' include('authorize.api.urls'))
Run python manage.py migrate to create the authorize models.
Start the development server and visit http://127.0.0.1:8000/auth/ to view authorize index.