This commit restructures the audiobook generation and serving layer to rely exclusively on S3-compatible blob storage, removing the dependency on local filesystem paths. - Bundle `ffmpeg` and `ffprobe` binaries via npm to ensure portability across environments. - Update API routes to stream audio directly from blob storage instead of local disk. - Remove legacy migration endpoints and filesystem-based indexing logic. - Add startup scripts to facilitate the transition from local to remote storage. BREAKING CHANGE: Audiobook functionality is now strictly dependent on S3 configuration. The previous filesystem-based storage method has been removed.
53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
tutorialSidebar: [
|
|
'intro',
|
|
{
|
|
type: 'category',
|
|
label: 'Start Here',
|
|
items: ['start-here/docker-quick-start', 'start-here/vercel-deployment', 'start-here/local-development'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Reference',
|
|
items: [
|
|
'reference/environment-variables',
|
|
'reference/stack',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Configure',
|
|
items: [
|
|
'configure/tts-providers',
|
|
{
|
|
type: 'doc',
|
|
id: 'configure/configuration',
|
|
label: 'Auth (Reccomended)',
|
|
},
|
|
'configure/tts-rate-limiting',
|
|
'configure/database-and-migrations',
|
|
'configure/storage-and-blob-behavior',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Integrations',
|
|
items: [
|
|
'integrations/kokoro-fastapi',
|
|
'integrations/orpheus-fastapi',
|
|
'integrations/deepinfra',
|
|
'integrations/openai',
|
|
'integrations/custom-openai',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Project',
|
|
items: ['project/support', 'project/acknowledgements', 'project/license'],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|