From e4a29843ab48f8f0919208abd2ce57ef62fd6db4 Mon Sep 17 00:00:00 2001 From: Unheard0840 Date: Thu, 6 Aug 2026 20:54:00 +0000 Subject: [PATCH] Update startos/dependencies.ts Require Fulcrum service --- startos/dependencies.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/startos/dependencies.ts b/startos/dependencies.ts index 861f741..1688daf 100644 --- a/startos/dependencies.ts +++ b/startos/dependencies.ts @@ -1,5 +1,13 @@ import { sdk } from './sdk' export const setDependencies = sdk.setupDependencies( - async ({ effects }) => ({}), + async ({ effects }) => { + return { + fulcrum: { + kind: 'running', + versionRange: '*', + healthChecks: [], + }, + } + }, ) \ No newline at end of file