Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co

## Project Overview

This is a **monorepo** for the FastAPI Startkit ecosystem — a Laravel/Masonite-inspired framework for building Python applications with FastAPI. It contains four main components:
This is a **monorepo** for the FastAPI Startkit ecosystem — a modular, provider-driven framework for building Python applications with FastAPI. It contains four main components:

| Directory | Purpose | Published as |
|---|---|---|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def with_relationship_autoloading(self):
pass

async def load(self, *relations):
"""Post-query eager loading — equivalent to Laravel's Collection::load().
"""Post-query eager loading — equivalent to Collection::load().

After fetching a collection, call this to load relationships in batch
without N+1 queries:
Expand Down
2 changes: 1 addition & 1 deletion fastapi_startkit/src/fastapi_startkit/storage/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def fake(self, name: str = "default") -> "FakeDriver":
"""
Replace the named disk with a FakeDriver backed by a temp directory.

The fake uses a plain LocalDriver under the hood (same as Laravel) so
The fake uses a plain LocalDriver under the hood so
all normal storage operations work, and the returned object exposes
assertion helpers (assertExists, assertMissing, assertCount, …).

Expand Down
Loading