File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 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 },
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments