@boltic/cli
Version:
A powerful CLI tool for managing Boltic Workflow integrations - create, sync, test, and publish integrations with ease
15 lines (11 loc) • 372 B
JavaScript
import createCLI from "./cli.js";
import { environments } from "./config/environments.js";
// Get environment-specific URLs
const env = environments.bolt;
const FYND_CONSOLE_URL = env.consoleUrl;
const BOLTIC_API_URL = env.apiUrl;
(async () => {
const cli = createCLI(FYND_CONSOLE_URL, BOLTIC_API_URL, env);
await cli.execute(process.argv);
})();