We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1baf9d7 commit 959d05aCopy full SHA for 959d05a
README.md
@@ -0,0 +1,24 @@
1
+# Creating a Custom User Model in Django
2
+
3
+1. *How do I fully replace the username field with an email field for Django authentication?*
4
+1. `AbstractUser` vs `AbstractBaseUser`
5
6
+## Want to learn how to build this?
7
8
+Check out the [post](https://testdriven.io/blog/django-custom-user-model/).
9
10
+## Want to use this project?
11
12
+1. Fork/Clone
13
14
+1. Pick one: `AbstractUser` or `AbstractBaseUser`
15
16
+1. Run:
17
18
+ ```sh
19
+ $ pipenv install django==2.1.5
20
+ $ pipenv shell
21
+ (env)$ python manage.py makemigrations
22
+ (env)$ python manage.py migrate
23
+ (env)$ python manage.py runserver
24
+ ```
0 commit comments