The template microservice
Follow instructions.
cd postgres
docker build . -t my-postgres
docker run -d -p 5432:5432 my-postgres
Export environment variables. Then run:
uvicorn app.main:app --reload --port 8000
Export environment variables. Then run from the app directory:
pytest