30 lines
759 B
TypeScript
30 lines
759 B
TypeScript
import { setupManifest } from '@start9labs/start-sdk'
|
|
import { long, short } from './i18n'
|
|
|
|
export const manifest = setupManifest({
|
|
id: 'premier-gunner',
|
|
title: 'Premier Gunner',
|
|
license: 'MIT',
|
|
packageRepo: 'https://github.com/ten31/premier-gunner',
|
|
upstreamRepo: 'https://github.com/ten31/premier-gunner',
|
|
marketingUrl: 'https://github.com/ten31/premier-gunner',
|
|
donationUrl: null,
|
|
description: { short, long },
|
|
volumes: ['main'],
|
|
images: {
|
|
'premier-gunner': {
|
|
source: { dockerBuild: { dockerfile: 'Dockerfile', workdir: '.' } },
|
|
arch: ['x86_64', 'aarch64'],
|
|
},
|
|
},
|
|
alerts: {
|
|
install: null,
|
|
update: null,
|
|
uninstall: null,
|
|
restore: null,
|
|
start: null,
|
|
stop: null,
|
|
},
|
|
dependencies: {},
|
|
})
|