fastapi-setup
Installation
SKILL.md
FastAPI Project Setup
Quick reference for initializing FastAPI backend projects with modern tooling (UV, SQLModel, pytest).
Quick Start
1. Initialize Backend with UV
cd backend
# Initialize Python project with UV
uv init --name backend --python 3.13
# Create project structure
mkdir -p src/models src/routers src/services src/middleware src/schemas src/utils tests alembic