File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ if (args.indexOf("--help") >= 0 || args.indexOf("-h") >= 0) {
66Sofie Core Development Mode
77
88Usage: yarn dev [options]
9+ yarn start [options]
10+
11+ Note: 'yarn start' runs install + build + dev, while 'yarn dev' just runs dev mode.
12+ All options work with both commands.
913
1014Options:
1115 --help, -h Show this help message
@@ -18,11 +22,13 @@ Options:
1822 Run without --db to use the currently active database
1923
2024Examples:
21- yarn dev # Run in normal dev mode
25+ yarn start # Install, build, then run in dev mode
26+ yarn dev # Run in normal dev mode (requires prior build)
2227 yarn dev --db=testing # Use a separate database for testing
2328 yarn dev --db=demo # Switch to demo database
2429 yarn dev --ui-only # Only watch UI, skip backend packages
2530 yarn dev --inspect-meteor # Debug Meteor with inspector
31+ yarn start --db=demo # Install, build, and run with demo database
2632` ) ;
2733 process . exit ( 0 ) ;
2834}
You can’t perform that action at this time.
0 commit comments