Make an env file in root directory containing a connector string like:
DB_CONN = "sqlite:///./service.db"
Creating docker container and running the app:
docker build -t healthservice .
docker run -p 8443:8443 healthservice
Windows Powershell:
python -m venv .venv
.venv/Scripts/Activate.ps1
python -m pip install -r requirements.txt
python -m pip install -e .uvicorn app.server:app --reload
pytest tests