- Django authentication boilerplate based on the default
User
model and theUserCreationForm
. - Uses
Bootstrap4
for styling.
-
Clone the project and install the dependencies.
cd django-authentication pip install -r requirements.txt
-
Make the necessary migrations to setup the default django models.
python manage.py migrate
-
Create a superuser so that you can access the User model through the admin interface at
/admin
.python manage.py createsuperuser
-
Once the above steps are completed, the project will be up and running on
localhost:8000
by executing the following command.python manage.py runserver