44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import { setupManifest } from '@start9labs/start-sdk'
|
|
import { long, short } from './i18n'
|
|
|
|
export const manifest = setupManifest({
|
|
id: 'munin-bitcoin',
|
|
title: 'Munin Bitcoin',
|
|
license: 'MIT',
|
|
|
|
packageRepo: 'https://stale-aviator.local:50745/Unheard0840/munin-bitcoin',
|
|
upstreamRepo: 'https://stale-aviator.local:50745/Unheard0840/munin-bitcoin',
|
|
marketingUrl: 'https://stale-aviator.local:50745/Unheard0840/munin-bitcoin',
|
|
donationUrl: 'https://stale-aviator.local:50745/Unheard0840/munin-bitcoin',
|
|
|
|
description: { short, long },
|
|
|
|
volumes: [
|
|
'main',
|
|
],
|
|
|
|
images: {
|
|
'munin-bitcoin': {
|
|
source: {
|
|
dockerTag: 'ghcr.io/munin-bitcoin/munin-bitcoin:0.1.0',
|
|
},
|
|
arch: [
|
|
'x86_64',
|
|
'aarch64',
|
|
'riscv64',
|
|
],
|
|
},
|
|
},
|
|
|
|
dependencies: {
|
|
fulcrum: {
|
|
description: 'Electrum server for querying the Bitcoin blockchain.',
|
|
optional: false,
|
|
metadata: {
|
|
title: 'Fulcrum',
|
|
icon: 'https://raw.githubusercontent.com/Start9Labs/fulcrum-startos/master/icon.svg',
|
|
},
|
|
},
|
|
},
|
|
})
|