26 lines
603 B
TypeScript
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';
|