What problem does it solve?
This skill initializes a FastAPI project with uv, pyproject.toml, ruff configuration, and environment files to give developers a ready-to-use backend scaffold.
Core Features & Use Cases
- Project scaffolding: Creates a clean FastAPI backend structure with a conventional layout (src/app) and an initial directory tree.
- Tooling & configuration: Generates pyproject.toml, .python-version, ruff.toml, and .env.example to standardize development environments.
- Quick Start ready: Provides initial commands to initialize, install, and run the project using uv, ensuring a smooth start for new services.
Quick Start
uv init
Create pyproject.toml with the dependencies and build configuration.
Create .python-version with the target Python version (e.g., 3.12).
Create ruff.toml to configure linting rules and tooling.
Create .env.example and set up the initial environment variables.
Set up the src/app directory structure, then install dependencies with uv sync.