Clone the project and move inside:
git clone https://github.com/pyprogrammerblog/arend.git
cd arend
Install the virtualenv on the root project folder:
docker-compose run --rm --no-deps app poetry install
Check your installed dependencies for security vulnerabilities
docker-compose run --rm app poetry check
Run the tests:
docker-compose run --rm app poetry run pytest
Shut down all services
docker-compose down
Hit the command
docker-compose run --rm -p 8888:8888 app poetry shell
Then inside the docker:
docker notebook --ip 0.0.0.0 --no-browser --allow-root
That is all!
Happy Coding!