This is the example project for setting up simple Django Authentication system
Guide link: https://djangopy.org/learn/set-up-authentication-system-in-django-in-just-10-minutes/
-
Clone repository
git clone https://github.com/djangopy-org/django_auth -
cd to repository.
-
Create a virtualenv by following command
virtualenv -p python3 . -
Activate virtualenv
source bin/activate -
Install required packages
pip3 install -r requirements.txt -
cd to src and run the server
python3 manage.py runserver