trustgraph/ts/scripts/run-gateway.ts

14 lines
284 B
TypeScript
Raw Normal View History

/**
* 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();