This project contains:
- backend/: FastAPI Python application
- infrastructure/: AWS CDK Infrastructure as Code
cd backend
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
uvicorn main:app --reloadcd infrastructure
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
cdk deploy