Install pipenv:
pip install pipenv
Install the dependencies:
pipenv install
Activate virtual env:
pipenv shell
cd dtc
python manage.py runserver
docker run -it \
-e POSTGRES_USER="root" \
-e POSTGRES_PASSWORD="root" \
-e POSTGRES_DB="dtc_db" \
-v dtc_postgres:/var/lib/postgresql/data \
-p 5432:5432 \
postgres:13