story-kit: start 71_bug_server_health_endpoint_missing

This commit is contained in:
Dave
2026-02-23 14:05:40 +00:00
parent 9f6b17bafb
commit ce21aba1d3

View File

@@ -0,0 +1,23 @@
# Bug 71: Server health endpoint missing
## Description
GET /api/health returns 404 not found. The server should have a health check endpoint that returns a 200 OK response so monitoring tools and scripts can verify the server is running.
## How to Reproduce
1. Start the story-kit server
2. curl http://localhost:3001/api/health
3. Observe 404 not found response
## Actual Result
404 not found
## Expected Result
200 OK with a simple health status response (e.g. {"status": "ok"})
## Acceptance Criteria
- [ ] Bug is fixed and verified