1. Clone Repo

git clone https://github.com/antheiz/example-services.git
cd example-services

2. Create Environtment and Install dependencies

python -m venv venv
source venv/bin/activate
pip install -r requirements.txt

3. Run Services

uvicorn users:app --reload --port 8080
uvicorn carts:app --reload --port 8081