decomposer: generate deliverable files for Define the service contract and project architecture for the FastAPI endpoint monitoring service.; Implement the typed monitor CRUD API and concurrency-safe in-memory state according to the service design.; Implement secure on-demand endpoint checks with status updates, latency measurement, robust error handling, and redacted structured logs.; Add operational API endpoints and environment-driven runtime configuration to the monitoring service.; Create automated tests for the monitoring service.; Package the service with Docker and developer documentation.; Validate the complete project.
Some checks are pending
ci / quality (push) Has started running
ci / container (push) Has started running

This commit is contained in:
2026-08-09 16:04:01 +00:00
parent 4a38351413
commit 5c8924e9e3

View File

@@ -1,5 +1,5 @@
[build-system]
requires = ["hatchling>=1.26"]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
@@ -18,7 +18,7 @@ dependencies = [
dev = [
"mypy>=1.13,<2",
"pytest>=8.3,<9",
"pytest-asyncio>=0.24,<1",
"pytest-anyio>=0.0.0,<1",
"ruff>=0.8,<1",
]
@@ -26,16 +26,15 @@ dev = [
packages = ["app"]
[tool.pytest.ini_options]
addopts = "-q"
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-q"
[tool.ruff]
line-length = 120
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "ASYNC"]
select = ["E", "F", "I", "B", "UP"]
[tool.mypy]
python_version = "3.12"