mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-01 01:19:38 +02:00
12 lines
295 B
TypeScript
12 lines
295 B
TypeScript
/**
|
|
* Start the librarian service.
|
|
*
|
|
* Usage: pnpm tsx scripts/run-librarian.ts
|
|
*
|
|
* Env:
|
|
* NATS_URL (default: nats://localhost:4222)
|
|
* LIBRARIAN_DATA_DIR (optional, e.g., ./data/librarian)
|
|
*/
|
|
import { runMain } from "../packages/flow/src/librarian/service.js";
|
|
|
|
runMain();
|