hatchet init db

This commit is contained in:
Igor Loskutov
2025-12-16 17:24:16 -05:00
parent 7591387e52
commit 4b00dda0ca
3 changed files with 17 additions and 16 deletions

View File

@@ -53,6 +53,16 @@ response = sqs.receive_message(QueueUrl=queue_url, ...)
uv run /app/requeue_uploaded_file.py TRANSCRIPT_ID
```
## Hatchet Setup (Fresh DB)
After resetting the Hatchet database:
1. Create API token at http://localhost:8889 → Settings → API Tokens
2. Update `server/.env`: `HATCHET_CLIENT_TOKEN=<new-token>`
3. Restart: `docker compose restart server hatchet-worker`
Workflows register automatically when hatchet-worker starts.
## Pipeline Management
### Continue stuck pipeline from final summaries (identify_participants) step:

View File

@@ -0,0 +1,2 @@
-- Create hatchet database for Hatchet workflow engine
CREATE DATABASE hatchet;