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: {}, })