- Rename configuration.md to auth.md for clarity - Rename storage-and-blob-behavior.md to object-blob-storage.md - Split server library import into dedicated documentation page - Rename intro.md to introduction.md - Merge support.md into support-and-contributing.md - Add interactive tabs to configuration and setup guides - Improve cross-references and navigation between documentation pages - Update sidebar structure and Docusaurus config for new file paths
50 lines
1.2 KiB
TypeScript
50 lines
1.2 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',
|
|
'configure/auth',
|
|
'configure/tts-rate-limiting',
|
|
'configure/database-and-migrations',
|
|
'configure/object-blob-storage',
|
|
'configure/server-library-import',
|
|
],
|
|
},
|
|
{
|
|
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-and-contributing', 'project/acknowledgements', 'project/license'],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|