Add StartOS 0.4.0 packaging
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
export const short = {
|
||||
en_US:
|
||||
'Download, transcribe, and summarize YouTube videos and podcasts with AI.',
|
||||
}
|
||||
|
||||
export const long = {
|
||||
en_US:
|
||||
'YouTube Summarizer downloads audio from YouTube videos and podcast RSS feeds, ' +
|
||||
'transcribes them using Google Gemini, and produces structured topic-by-topic ' +
|
||||
'summaries with timestamps. Features include channel and podcast subscriptions ' +
|
||||
'with automatic new episode detection, a background processing queue with ' +
|
||||
'configurable delays, auto-download per subscription, organized history with ' +
|
||||
'folders, multiple AI model support, and a responsive web interface. ' +
|
||||
'Requires a Google Gemini API key (free tier available at aistudio.google.com/apikey).',
|
||||
}
|
||||
|
||||
export const alertInstall = {
|
||||
en_US:
|
||||
'After installing, open the web UI and enter your Google Gemini API key in Settings. ' +
|
||||
'For reliable YouTube downloads, set up OAuth2 authentication in Settings > YouTube Authentication.',
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
import { setupManifest } from '@start9labs/start-sdk'
|
||||
import { alertInstall, long, short } from './i18n'
|
||||
|
||||
export const manifest = setupManifest({
|
||||
id: 'youtube-summarizer',
|
||||
title: 'YouTube Summarizer',
|
||||
license: 'Proprietary',
|
||||
packageRepo: 'https://github.com/user/youtube-summarizer-startos',
|
||||
upstreamRepo: 'https://github.com/user/youtube-summarizer',
|
||||
marketingUrl: 'https://github.com/user/youtube-summarizer',
|
||||
donationUrl: null,
|
||||
docsUrls: [
|
||||
'https://github.com/user/youtube-summarizer/blob/main/README.md',
|
||||
],
|
||||
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,
|
||||
},
|
||||
dependencies: {},
|
||||
})
|
||||
Reference in New Issue
Block a user