Add agents file

This commit is contained in:
2026-07-31 19:56:58 +02:00
parent d345e522bd
commit b144b9ae27
3 changed files with 140 additions and 1 deletions

32
README.md Normal file
View File

@@ -0,0 +1,32 @@
# python-fun
A training project for learning functional programming in Python through Domain-Driven Design, based on *"Hands-on Domain Driven Design with .NET Core"*.
## Setup
```bash
python -m venv .venv
source .venv/bin/activate
pip install -e .
```
## Run the server
```bash
uvicorn main:app --reload
```
The health check endpoint is available at `http://localhost:8000/`.
## Run tests
```bash
pytest tests/
```
## Lint & format
```bash
ruff check .
ruff format --check .
```