()
| 75 | } |
| 76 | |
| 77 | async function cleanupExistingContainers(): Promise<void> { |
| 78 | console.log(chalk.blue('🧹 Cleaning up any existing containers...')) |
| 79 | await stopAndRemoveContainer(APP_CONTAINER) |
| 80 | await stopAndRemoveContainer(DB_CONTAINER) |
| 81 | await stopAndRemoveContainer(MIGRATIONS_CONTAINER) |
| 82 | await stopAndRemoveContainer(REALTIME_CONTAINER) |
| 83 | } |
| 84 | |
| 85 | async function main() { |
| 86 | const options = program.parse().opts() |
no test coverage detected