()
| 3127 | }); |
| 3128 | |
| 3129 | const printNoRunningLocalWebApp = (): void => { |
| 3130 | console.log("Executor is not running."); |
| 3131 | console.log(""); |
| 3132 | console.log("Install and start the background service:"); |
| 3133 | console.log(` ${cliPrefix} install`); |
| 3134 | console.log(""); |
| 3135 | console.log("Then open the web UI:"); |
| 3136 | console.log(` ${cliPrefix} web`); |
| 3137 | console.log(""); |
| 3138 | console.log("For a temporary foreground server:"); |
| 3139 | console.log(` ${cliPrefix} web --foreground`); |
| 3140 | }; |
| 3141 | |
| 3142 | const openRunningLocalWebApp = (): Effect.Effect< |
| 3143 | void, |
no test coverage detected