This demo uses Python 3.7 and Django 2.2
$ python3.7 -m venv .venv
$ ./.venv/bin/pip install -r requirements.txt
$ ./.venv/bin/python manage.py migrate
$ ./.venv/bin/python manage.py loaddata goodreadsIf the virtual environment .venv doesn't exist yet, create one:
$ python3.7 -m venv .venvAfterwards, ensure all dependencies are installed:
$ ./.venv/bin/pip install -r requirements-dev.txtThe code is formatted using black.
$ ./.venv/bin/black .