refactor: implement generic queue worker with task-type dispatch and improved retry logic

This commit is contained in:
Abhimanyu Saharan
2026-02-15 13:07:32 +05:30
parent 7e76cd1f68
commit 8f4a398839
6 changed files with 191 additions and 24 deletions

View File

@@ -143,7 +143,7 @@ api-gen: frontend-tooling ## Regenerate TS API client (requires backend running
$(NODE_WRAP) --cwd $(FRONTEND_DIR) npm run api:gen
.PHONY: rq-worker
rq-worker: ## Run background webhook queue worker loop
rq-worker: ## Run background queue worker loop
cd $(BACKEND_DIR) && uv run python ../scripts/rq worker
.PHONY: backend-templates-sync