devflow-ai
Version:
Enterprise-grade AI agent orchestration with swarm management UI dashboard
15 lines (10 loc) • 352 B
JavaScript
/**
* Simple startup script for Claude Code Web UI
* Usage: node start-web-ui.js [port]
*/
import { startWebServer } from './src/cli/simple-commands/web-server.js';
const port = process.argv[2] ? parseInt(process.argv[2]) : 3000;
console.log('🚀 Starting Claude Code Web UI...');
console.log();
await startWebServer(port);