platform-tooling/run/cli/commands/dev/index.ts
2026-03-18 22:28:37 -07:00

26 lines
603 B
TypeScript

/**
* Development commands - organized by function
*
* All services run in Docker containers for dev/prod parity.
*/
// Start commands
export { dev, devAll, devCi, devInfra, devTools } from './start';
// Stop commands
export { devStop, devStopNoptty, devReset, devFresh, devCleanup } from './stop';
// Clean commands
export { devClean } from './clean';
// Status commands
export { devStatus, devWatch } from './status';
// Logs command
export { devLogs } from './logs';
// Resume commands
export { devResume, devRestart } from './resume';
// Debug command
export { devDebug } from './debug';