@puls-atlas/cli
Version:
The Puls Atlas CLI tool for managing Atlas projects
4 lines • 711 B
JavaScript
import start from './index.js';
import hooks from '../../hooks/index.js';
const registerStartCommand = program => program.command('start').description('Start the local development server and Docker services.').option('--link', 'Symlink local core packages defined in your link.json file.').option('--watch', 'Watch linked local packages for changes and restart the frontend.').option('--clear-cache', 'Clear the frontend build cache before starting.').option('--ai-refresh <mode>', 'Atlas AI refresh mode before startup: auto, off, or force.').option('--detached', 'Run the frontend development server in detached mode.').action(start).hook('preAction', hooks.versionCheck);
export default registerStartCommand;