Files
spaces-startos/startos/manifest/index.ts
T
spacesops e41ff31221
Build Service / BuildPackage (push) Has been cancelled
Added optional Explorer/Indexer
2026-05-20 15:43:38 -04:00

52 lines
1.4 KiB
TypeScript

import { setupManifest } from '@start9labs/start-sdk'
import { depBitcoindDescription, long, short } from './i18n'
export const manifest = setupManifest({
id: 'spaces',
title: 'Spaces',
license: 'MIT',
packageRepo: 'https://github.com/horologger/spaces-startos',
upstreamRepo: 'https://github.com/spacesops/spaced',
marketingUrl: 'https://spacesprotocol.org',
donationUrl: null,
docsUrls: ['https://docs.spacesprotocol.org/'],
description: { short, long },
volumes: ['main'],
images: {
spaces: {
source: { dockerTag: 'horologger/spaces:v0.0.9s' },
arch: ['x86_64', 'aarch64'],
},
postgres: {
source: { dockerTag: 'postgres:16.3' },
arch: ['x86_64', 'aarch64'],
},
'indexer-go': {
source: { dockerTag: 'golang:1.23-alpine' },
arch: ['x86_64', 'aarch64'],
},
'explorer-ui': {
source: { dockerTag: 'node:20-alpine' },
arch: ['x86_64', 'aarch64'],
},
},
alerts: {
install: null,
update: null,
uninstall: null,
restore: null,
start: null,
stop: null,
},
dependencies: {
bitcoind: {
description: depBitcoindDescription,
optional: false,
metadata: {
title: 'Bitcoin',
icon: 'https://raw.githubusercontent.com/Start9Labs/bitcoin-core-startos/feec0b1dae42961a257948fe39b40caf8672fce1/dep-icon.svg',
},
},
},
})