Endorser services are built using FastAPI.
To install local dependencies:
pip install -r requirements.txt
gunicorn -k uvicorn.workers.UvicornWorker -b localhost:5000 api.main:app
To run linting and tests locally (these are executed automatically for each PR):
pip install tox
tox -e lint
tox -e test