Installation

Create your virtual environment

python3.9 -m venv .env

Activate your virtual environment

.env/Scripts/activate

Install dependencies using pip package manager

pip install -r requirement.txt

Configuration

configure your database with postgresql : modify DATABASES setting in 'settings.py' file

Start Projet

To start project

python manage.py migrate
python manage.py overload

In other terminal :

python manage.py runserver