Files
keysat/startos/dependencies.ts
T
2026-04-22 17:46:43 -05:00

17 lines
475 B
TypeScript

// Declare our dependency on BTCPay Server. StartOS uses this to:
// - prevent starting if BTCPay isn't installed,
// - gate our service's health status on BTCPay's,
// - provide the `btcpayserver.startos` hostname inside our container.
import { sdk } from './sdk'
export const setDependencies = sdk.setupDependencies(async ({ effects }) => {
return {
btcpayserver: {
kind: 'running',
versionRange: '>=1.11.0',
healthChecks: [],
},
}
})