Files
python-fun/README.md
2026-07-31 19:56:58 +02:00

489 B

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

python -m venv .venv
source .venv/bin/activate
pip install -e .

Run the server

uvicorn main:app --reload

The health check endpoint is available at http://localhost:8000/.

Run tests

pytest tests/

Lint & format

ruff check .
ruff format --check .