git clone git@github.com:unipartdigital/workflows_engine.git
cd workflows_engine
pip install -r pip-requirements.txt --user
pip install . --user
pipenv --three && pipenv run pip install -r pip-requirements.txt && pipenv shell
To build the documentation
pip install .[doc] --user
cd docs
make html
It is possible to build and serve the html in a docker container
docker build -t workflow_docs -f ./docs/Dockerfile .
docker run -p 80:8080 workflow_docs
Then just visit http://localhost:8080/
.