Update startos/main.ts

This commit is contained in:
2026-08-05 18:13:50 +00:00
parent 12d372ffc9
commit 719b0030dc
+5 -2
View File
@@ -19,9 +19,12 @@ export const main = sdk.setupMain(async ({ effects }) => {
), ),
exec: { command: ['munin-bitcoin'] }, exec: { command: ['munin-bitcoin'] },
ready: { ready: {
display: i18n('Munin Bitcoin service'), display: i18n('Web Interface'),
fn: () => fn: () =>
sdk.healthCheck.checkProcessRunning(effects, 'munin-bitcoin'), sdk.healthCheck.checkPortListening(effects, uiPort, {
successMessage: i18n('The web interface is ready'),
errorMessage: i18n('The web interface is not ready'),
}),
}, },
requires: [], requires: [],
}) })