@civic/nexus-bridge
Version:
Stdio <-> HTTP/SSE MCP bridge with Civic auth handling
14 lines • 499 B
JavaScript
/**
* compiled-cli.ts
*
* Special entry point for the compiled binary version.
* This file sets compilation-specific environment variables
*/
// Import version from version.ts
import { version } from './version.js';
// Import and run the main application
import './index.js';
// Set environment variable to identify this as the compiled binary
process.env.NEXUS_BRIDGE_BINARY = 'true';
console.log(`Starting Nexus Bridge v${version} (Compiled Binary)`);
//# sourceMappingURL=compiled-cli.js.map