feat: add sqlite-backed API docs and tests
All checks were successful
ci / test-and-build (push) Successful in 11m21s

This commit is contained in:
Steve W
2026-04-11 18:42:05 +00:00
parent 87efe766a2
commit f0275c41d0
9 changed files with 304 additions and 5 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
version: '3.8'
services:
work-queue-api:
build: .
image: git.danhenry.dev/thelab/work-queue-api:latest
ports:
- "8080:8080"
environment:
DATABASE_URL: /data/work_queue.db
PORT: 8080
volumes:
- ./data:/data
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:8080/health"]
interval: 30s
timeout: 10s
retries: 3