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
+4 -6
View File
@@ -1,13 +1,11 @@
import { sdk } from './sdk' import { sdk } from './sdk'
export const setDependencies = sdk.setupDependencies( export const setDependencies = sdk.setupDependencies(
async ({ effects }) => { async ({ effects }) => ({
return {
fulcrum: { fulcrum: {
kind: 'running', kind: 'running',
versionRange: '*', versionRange: '>=0',
healthChecks: [], healthChecks: ['primary'],
},
}
}, },
}),
) )
+2 -3
View File
@@ -32,12 +32,11 @@ export const manifest = setupManifest({
dependencies: { dependencies: {
fulcrum: { fulcrum: {
description: description: 'Electrum server for querying the Bitcoin blockchain.',
'Electrum server used by Munin Bitcoin to access blockchain and wallet data.',
optional: false, optional: false,
metadata: { metadata: {
title: 'Fulcrum', 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',
}, },
}, },
}, },