Files
spacesops-startos/startos/manifest/index.ts
T
2026-08-25 16:54:57 -04:00

31 lines
803 B
TypeScript

import { setupManifest } from '@start9labs/start-sdk'
import { depSpacesDescription, long, short } from './i18n'
export const manifest = setupManifest({
id: 'spacesops',
title: 'SpacesOps',
license: 'MIT',
packageRepo: 'https://git.spacesops.com/spacesops/spacesops-startos',
upstreamRepo: 'https://git.spacesops.com/spacesops/spacesops',
marketingUrl: 'https://spacesops.com',
donationUrl: null,
description: { short, long },
volumes: ['main'],
images: {
spacesops: {
source: { dockerTag: 'spacesops/spacesops:v1.0.4' },
arch: ['x86_64', 'aarch64'],
},
},
dependencies: {
spaces: {
description: depSpacesDescription,
optional: false,
metadata: {
title: 'Spaces',
icon: 'assets/spaces-icon.png',
},
},
},
})