Skip to content

Commit 9be41b4

Browse files
committed
Merge branch 'staging'
2 parents fe5ce5a + f08a51c commit 9be41b4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

packages/cli/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"name": "simstudio",
3-
"version": "0.1.18",
3+
"version": "0.1.19",
44
"description": "Sim Studio CLI - Run Sim Studio with a single command",
55
"main": "dist/index.js",
6+
"type": "module",
67
"bin": {
78
"simstudio": "dist/index.js"
89
},

packages/cli/src/index.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ async function main() {
188188
'ghcr.io/simstudioai/migrations:latest',
189189
'bun',
190190
'run',
191-
'db:push',
191+
'db:migrate',
192192
])
193193

194194
if (!migrationsSuccess) {
@@ -259,7 +259,7 @@ async function main() {
259259
)
260260
console.log(
261261
chalk.yellow(
262-
`🛑 To stop all containers, run: ${chalk.bold('docker stop simstudio-app simstudio-db')}`
262+
`🛑 To stop all containers, run: ${chalk.bold('docker stop simstudio-app simstudio-db simstudio-realtime')}`
263263
)
264264
)
265265

@@ -275,6 +275,7 @@ async function main() {
275275
// Stop containers
276276
await stopAndRemoveContainer(APP_CONTAINER)
277277
await stopAndRemoveContainer(DB_CONTAINER)
278+
await stopAndRemoveContainer(REALTIME_CONTAINER)
278279

279280
console.log(chalk.green('✅ Sim Studio has been stopped'))
280281
process.exit(0)

0 commit comments

Comments
 (0)