You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/app-cli/app/command-server.js
+15-3Lines changed: 15 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -14,17 +14,25 @@ class Command extends BaseCommand {
14
14
return`${_('Start, stop or check the API server. To specify on which port it should run, set the api.port config variable. Commands are (%s).',['start','stop','status'].join('|'))} This is an experimental feature - use at your own risks! It is recommended that the server runs off its own separate profile so that no two CLI instances access that profile at the same time. Use --profile to specify the profile path.`;
15
15
}
16
16
17
+
options(){
18
+
return[
19
+
['--exit-early','Allow the command to exit while the server is still running. The server will still stop when the app exits. Valid only for the `start` subcommand.'],
20
+
['--quiet','Log less information to the console. More verbose logs will still be available through log-clipper.txt.'],
0 commit comments