Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 492 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 492 Bytes

Service A

Simple service with one downstream call, written in Python 3 asgi with uvicorn server.

Endpoints:

  • "/"
  • "/health"

Develop

python3 -m venv .venv  
source .venv/bin/activate  

In VSCode: Cmd-Shift-P > Select Python Interpreter > .venv/...

Install dependencies

pip install -r requirements.txt  
pip install -r requirements_dev.txt

Unit tests

python3 -m pytest

Container image

Use provided Dockerfile to create a container image.