mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2026-02-04 09:56:47 +00:00
* feat: WIP doc (vibe started and iterated) * install from scratch docs * caddyfile.example * gitignore * authentik script * authentik script * authentik script * llm doc * authentik ongoing * more daily setup logs * doc website * gpu self hosted setup guide (no-mistakes) * doc review round * doc review round * doc review round * update doc site sidebars * feat(docs): add mermaid diagram support * docs polishing * live pipeline doc * move pipeline dev docs to dev docs location * doc pr review iteration * dockerfile healthcheck * docs/pr-comments * remove jwt comment * llm suggestion * pr comments * pr comments * document auto migrations * cleanup docs --------- Co-authored-by: Mathieu Virbel <mat@meltingrocks.com> Co-authored-by: Igor Loskutov <igor.loskutoff@gmail.com>
95 lines
2.2 KiB
TypeScript
95 lines
2.2 KiB
TypeScript
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
tutorialSidebar: [
|
|
'intro',
|
|
{
|
|
type: 'category',
|
|
label: 'Concepts',
|
|
collapsed: false,
|
|
items: [
|
|
'concepts/overview',
|
|
'concepts/modes',
|
|
'concepts/pipeline',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Installation',
|
|
collapsed: false,
|
|
items: [
|
|
'installation/overview',
|
|
'installation/requirements',
|
|
'installation/docker-setup',
|
|
'installation/modal-setup',
|
|
'installation/self-hosted-gpu-setup',
|
|
'installation/auth-setup',
|
|
'installation/daily-setup',
|
|
{
|
|
type: 'category',
|
|
label: 'Other Integrations',
|
|
collapsed: true,
|
|
items: [
|
|
'installation/whereby-setup',
|
|
'installation/zulip-setup',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Pipelines',
|
|
items: [
|
|
'pipelines/overview',
|
|
'pipelines/file-pipeline',
|
|
'pipelines/live-pipeline',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Reference',
|
|
items: [
|
|
{
|
|
type: 'category',
|
|
label: 'Architecture',
|
|
items: [
|
|
'reference/architecture/overview',
|
|
'reference/architecture/backend',
|
|
'reference/architecture/frontend',
|
|
'reference/architecture/workers',
|
|
'reference/architecture/database',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Processors',
|
|
items: [
|
|
'reference/processors/transcription',
|
|
'reference/processors/diarization',
|
|
'reference/processors/translation',
|
|
'reference/processors/analysis',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'API',
|
|
items: [
|
|
{
|
|
type: 'doc',
|
|
id: 'reference/api/overview',
|
|
},
|
|
{
|
|
type: 'link',
|
|
label: 'OpenAPI Reference',
|
|
href: '/docs/reference/api',
|
|
},
|
|
],
|
|
},
|
|
'reference/configuration',
|
|
],
|
|
},
|
|
'roadmap',
|
|
],
|
|
};
|
|
|
|
export default sidebars; |