Skip to content

Commit 4ff853f

Browse files
committed
Mention yarn start in help
1 parent f310480 commit 4ff853f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

scripts/lib.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ if (args.indexOf("--help") >= 0 || args.indexOf("-h") >= 0) {
66
Sofie Core Development Mode
77
88
Usage: 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
1014
Options:
1115
--help, -h Show this help message
@@ -18,11 +22,13 @@ Options:
1822
Run without --db to use the currently active database
1923
2024
Examples:
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
}

0 commit comments

Comments
 (0)