Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 621 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 621 Bytes

Creating a Custom User Model in Django

  1. How do I fully replace the username field with an email field for Django authentication?
  2. AbstractUser vs AbstractBaseUser

Want to learn how to build this?

Check out the post.

Want to use this project?

  1. Fork/Clone

  2. Pick one: AbstractUser or AbstractBaseUser

  3. Run:

    $ python3 -m venv env && source env/bin/activate
    (env)$ pip install django==3.0.4
    (env)$ python manage.py makemigrations
    (env)$ python manage.py migrate
    (env)$ python manage.py runserver