Skip to content

Commit 959d05a

Browse files
committed
add readme
1 parent 1baf9d7 commit 959d05a

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)