Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 385 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 385 Bytes

Endorser Services

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