The API will be available at http://localhost:8000 API documentation will be available at http://localhost:8000/docs
backend/ ├── main.py # Main FastAPI application ├── requirements.txt # Project dependencies └── readme.md # This file
- Clone the repository
- Install dependencies:
pip install -r requirements.txt - Run the application:
uvicorn main:app --reload