Skip to content

Bayoslav/Django-Authify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Django-Authify

Django-Authify is a VERY lightweight authentication app for Django 2.0. It extends the Django AbstractBaseUser and BaseUserManager for the new User class.

If you have any problems with using this just open an issue here and I'll respond asap.

Install instructions
  1. Add 'authentication' to your installed apps in settings.py

  2. Add this to your settings.py:

AUTH_USER_MODEL = 'authentication.User'
  1. Add the user model to the database
python manage.py makemigrations
python manage.py migrate