Add Fulcrum dependency

This commit is contained in:
Unheard0840
2026-08-08 08:01:30 +02:00
parent e4a29843ab
commit 86cdd37809
2 changed files with 11 additions and 14 deletions
+7 -9
View File
@@ -1,13 +1,11 @@
import { sdk } from './sdk'
export const setDependencies = sdk.setupDependencies(
async ({ effects }) => {
return {
fulcrum: {
kind: 'running',
versionRange: '*',
healthChecks: [],
},
}
},
async ({ effects }) => ({
fulcrum: {
kind: 'running',
versionRange: '>=0',
healthChecks: ['primary'],
},
}),
)
+2 -3
View File
@@ -32,12 +32,11 @@ export const manifest = setupManifest({
dependencies: {
fulcrum: {
description:
'Electrum server used by Munin Bitcoin to access blockchain and wallet data.',
description: 'Electrum server for querying the Bitcoin blockchain.',
optional: false,
metadata: {
title: 'Fulcrum',
icon: 'https://raw.githubusercontent.com/Start9Labs/fulcrum-startos/master/dep-icon.svg',
icon: 'https://raw.githubusercontent.com/Start9Labs/fulcrum-startos/master/icon.svg',
},
},
},