27 lines
468 B
Markdown
27 lines
468 B
Markdown
# Loan Operations API (loapi)
|
|
|
|
A FastAPI-based loan operations management system.
|
|
|
|
## Features
|
|
|
|
- RESTful API for loan operations
|
|
- Automatic API documentation
|
|
- Request/response validation
|
|
- Middleware for logging and error handling
|
|
|
|
## Development
|
|
|
|
```bash
|
|
# Install dependencies
|
|
uv sync
|
|
|
|
# Run the development server
|
|
uv run python main.py
|
|
```
|
|
|
|
## API Documentation
|
|
|
|
Once running, visit:
|
|
- Swagger UI: http://localhost:8000/docs
|
|
- ReDoc: http://localhost:8000/redoc
|