39 lines
971 B
TypeScript
39 lines
971 B
TypeScript
import { setupManifest } from '@start9labs/start-sdk'
|
|
import { alertInstall, long, short } from './i18n'
|
|
|
|
export const manifest = setupManifest({
|
|
id: 'recap-relay',
|
|
title: 'Recap Relay',
|
|
license: 'Proprietary',
|
|
packageRepo: 'https://ten31.xyz',
|
|
upstreamRepo: 'https://ten31.xyz',
|
|
marketingUrl: 'https://ten31.xyz',
|
|
donationUrl: null,
|
|
docsUrls: [],
|
|
description: { short, long },
|
|
volumes: ['main'],
|
|
images: {
|
|
main: {
|
|
source: {
|
|
dockerBuild: {
|
|
workdir: '.',
|
|
dockerfile: './Dockerfile',
|
|
},
|
|
},
|
|
arch: ['x86_64', 'aarch64'],
|
|
},
|
|
},
|
|
alerts: {
|
|
install: alertInstall,
|
|
update: null,
|
|
uninstall: null,
|
|
restore: null,
|
|
start: null,
|
|
stop: null,
|
|
},
|
|
// Relay has no required dependencies — Gemini is internet-fronted
|
|
// and the optional Parakeet/Gemma backends are at user-configured
|
|
// URLs (typically a separate machine on the operator's LAN).
|
|
dependencies: {},
|
|
})
|