Refactor pipeline task handling and UI flows

This commit is contained in:
2026-06-13 21:09:49 +02:00
parent 21c7e4c9a4
commit ff4c572157
24 changed files with 1346 additions and 236 deletions

View File

@@ -1,9 +1,13 @@
import { defineApp } from "convex/server";
import workflow from "@convex-dev/workflow/convex.config";
import auditWorkpool from "@convex-dev/workpool/convex.config";
import betterAuth from "./betterAuth/convex.config";
const app = defineApp();
app.use(betterAuth);
app.use(workflow);
app.use(auditWorkpool, { name: "auditWorkpool" });
export default app;