mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-01 17:39:39 +02:00
13 lines
284 B
TypeScript
13 lines
284 B
TypeScript
/**
|
|
* Start the API gateway.
|
|
*
|
|
* Usage: pnpm tsx scripts/run-gateway.ts
|
|
*
|
|
* Env:
|
|
* NATS_URL (default: nats://localhost:4222)
|
|
* GATEWAY_PORT (default: 8088)
|
|
* GATEWAY_SECRET (optional)
|
|
*/
|
|
import { runMain } from "../packages/flow/src/gateway/server.js";
|
|
|
|
runMain();
|