docs: add v5 migration guide

This commit is contained in:
2026-07-11 15:09:41 +02:00
committed by d3vyce
parent 51acf61d0f
commit 7da08ffd9a
4 changed files with 166 additions and 6 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ Configure the CLI in your `pyproject.toml`:
```toml
[tool.fastapi-toolsets]
cli = "myapp.cli:cli" # Custom Typer app
custom_cli = "myapp.cli:cli" # Custom Typer app
fixtures = "myapp.fixtures:registry" # FixtureRegistry instance
db_context = "myapp.db:db_context" # Async context manager for sessions
```
@@ -99,7 +99,7 @@ def hello():
```toml
[tool.fastapi-toolsets]
cli = "myapp.cli:cli"
custom_cli = "myapp.cli:cli"
```
---