diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ce6fff5 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +up: + docker-compose up + +down: + docker-compose down + +test: + python -m pytest tests/test_predict.py + +env: + pipenv install --dev + pipenv shell + +env_out: + deactivate +