Developer Setup
1. Setup Virtual Environment
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
2. Install Dependencies
pip install -r requirements.txt
3. Run the API Server
uvicorn src.app.main:app --reload
Visit http://localhost:8000/docs
for Swagger UI after starting the server.