Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 739 Bytes

README_USERS.md

File metadata and controls

46 lines (34 loc) · 739 Bytes

arend

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

Jupyter Notebook

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!