8d839e3714
- Add redaction gateway (redaction_gateway.py, redaction/ scrub + tests) - Add embeddings proxy and spark_embed service (Dockerfile + main.py) - Expand audio_proxy with speaker-aware handling; deep_health/health/server updates - Package: configureSparks action + sparkConfig model updates, manifest/main wiring - Docs: AUDIO_API, EMBEDDINGS, REDACTION_GATEWAY; HANDOFF and runbook/known-issues refresh
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import { setupManifest } from '@start9labs/start-sdk'
|
|
import { long, short } from './i18n'
|
|
|
|
export const manifest = setupManifest({
|
|
id: 'spark-control',
|
|
title: 'Spark Control',
|
|
license: 'MIT',
|
|
// Placeholder URLs — replace with a real repo before publishing the package
|
|
// publicly. The StartOS UI shows these as "Source" and "Marketing" links;
|
|
// example.com is RFC 2606 reserved-for-documentation so it's an obvious
|
|
// "fill me in" signal rather than pointing at anyone's personal account.
|
|
packageRepo: 'https://example.com',
|
|
upstreamRepo: 'https://example.com',
|
|
marketingUrl: 'https://example.com',
|
|
donationUrl: null,
|
|
docsUrls: [],
|
|
description: { short, long },
|
|
volumes: ['main'],
|
|
images: {
|
|
'spark-control': {
|
|
source: {
|
|
dockerBuild: {
|
|
dockerfile: '../image/Dockerfile',
|
|
workdir: '../image',
|
|
},
|
|
},
|
|
arch: ['x86_64', 'aarch64'],
|
|
},
|
|
},
|
|
alerts: {
|
|
install: null,
|
|
update: null,
|
|
uninstall: null,
|
|
restore: null,
|
|
start: null,
|
|
stop: null,
|
|
},
|
|
dependencies: {},
|
|
})
|