Create your virtual environment
python3.9 -m venv .envActivate your virtual environment
.env/Scripts/activateInstall dependencies using pip package manager
pip install -r requirement.txtconfigure your database with postgresql : modify DATABASES setting in 'settings.py' file
To start project
python manage.py migrate
python manage.py overload
In other terminal :
python manage.py runserver