To support container orchestration (like Kubernetes or Docker healthchecks), we need a simple /health GET endpoint on the web_server.py REST API.
Requirements:
- Responds with HTTP 200 and a JSON payload {"status": "healthy"}.
- Zero-dependency (use BaseHTTPRequestHandler).
- Add unit tests verifying /health in tests/test_web_server.py.
To support container orchestration (like Kubernetes or Docker healthchecks), we need a simple /health GET endpoint on the web_server.py REST API.
Requirements: