Initial commit: Premier Gunner tracker + StartOS 0.4.0 s9pk package

This commit is contained in:
Keysat
2026-05-31 21:04:48 -05:00
commit 0265699504
67 changed files with 4578 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
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: {},
})