You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-10Lines changed: 9 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,12 +28,20 @@ code python-base
28
28
```
29
29
4. When prompted, click "Reopen in Container"
30
30
31
-
## Development Workflow
31
+
## Example Usage
32
32
33
33
Add the local modules
34
34
```bash
35
35
uv pip install -e .
36
36
```
37
+
Run the examples:
38
+
```sh
39
+
uv run -m main
40
+
uv run -m examples.user
41
+
uv run -m examples.flight
42
+
```
43
+
44
+
## Development Workflow
37
45
38
46
### Code Quality Tools
39
47
@@ -75,15 +83,6 @@ logger = get_logger(__name__)
75
83
logger.info("Application started")
76
84
```
77
85
78
-
## Example Usage
79
-
80
-
The repository includes example code demonstrating Pydantic model usage:
81
-
```sh
82
-
uv run -m main
83
-
uv run -m examples.user
84
-
uv run -m examples.flight
85
-
```
86
-
87
86
## Contributing
88
87
89
88
This repository follows modern Python development practices. All configuration is centralized in `pyproject.toml` for maintainability. Before contributing:
0 commit comments