29 lines
438 B
Markdown
29 lines
438 B
Markdown
# Blog API
|
|
|
|
Welcome to the Blog API documentation.
|
|
|
|
## Features
|
|
|
|
- FastAPI-based REST API
|
|
- Python 3.13+
|
|
- Async support
|
|
- Type hints throughout
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
# Install dependencies
|
|
uv sync
|
|
|
|
# Run development server
|
|
uv run python -m app.main
|
|
```
|
|
|
|
## API Endpoints
|
|
|
|
See [API Reference](api/endpoints.md) for detailed endpoint documentation.
|
|
|
|
## Development
|
|
|
|
See [Development Guide](development/setup.md) for setup instructions.
|