31 lines
803 B
TypeScript
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',
|
|
},
|
|
},
|
|
},
|
|
})
|