()
| 3224 | }); |
| 3225 | |
| 3226 | const printNoRunningLocalWebApp = (): void => { |
| 3227 | console.log("Executor is not running."); |
| 3228 | console.log(""); |
| 3229 | console.log("Install and start the background service:"); |
| 3230 | console.log(` ${cliPrefix} install`); |
| 3231 | console.log(""); |
| 3232 | console.log("Then open the web UI:"); |
| 3233 | console.log(` ${cliPrefix} web`); |
| 3234 | console.log(""); |
| 3235 | console.log("For a temporary foreground server:"); |
| 3236 | console.log(` ${cliPrefix} web --foreground`); |
| 3237 | }; |
| 3238 | |
| 3239 | const openRunningLocalWebApp = (): Effect.Effect< |
| 3240 | void, |
no test coverage detected