feat: rebuild work queue api with fastapi and postgres
Some checks failed
ci / build-test-push (push) Failing after 1m42s

This commit is contained in:
Steve W
2026-04-11 19:24:52 +00:00
parent 7420adb7aa
commit fbc88bb62b
33 changed files with 1707 additions and 1132 deletions

20
docs/api-reference.md Normal file
View File

@@ -0,0 +1,20 @@
# API Reference
## Projects
- `POST /projects`
- `GET /projects`
- `GET /projects/{id}`
- `PATCH /projects/{id}`
## Work
- `POST /work`
- `GET /work`
- `GET /work/{id}`
- `PATCH /work/{id}`
- `DELETE /work/{id}`
## Monitoring
- `GET /work?status=in_progress`
- `GET /work?status=blocked`
- `GET /work?status=failed`
- `GET /work?status=completed&since=<ts>`