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