UNPKG

@civic/hub-bridge

Version:

Stdio <-> HTTP/SSE MCP bridge with Civic auth handling

18 lines 612 B
/** * compiled-cli.ts * * Special entry point for the compiled binary version. * This file sets compilation-specific environment variables */ // Import version from CLI module import { getVersion } from './cli/index.js'; // Import and run the main application import './index.js'; import { logger } from "./utils/index.js"; // Set environment variable to identify this as the compiled binary process.env.HUB_BRIDGE_BINARY = 'true'; // Log version asynchronously getVersion().then(version => { logger.info(`Starting Hub Bridge v${version} (Compiled Binary)`); }); //# sourceMappingURL=compiled-cli.js.map