mirror of
https://github.com/vatesfr/xen-orchestra.git
synced 2026-09-11 06:29:51 -05:00
163 lines
3.5 KiB
TypeScript
163 lines
3.5 KiB
TypeScript
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs'
|
|
|
|
/**
|
|
* Creating a sidebar enables you to:
|
|
- create an ordered group of docs
|
|
- render a sidebar for each doc of that group
|
|
- provide next/previous navigation
|
|
|
|
The sidebars can be generated from the filesystem, or explicitly defined here.
|
|
|
|
Create as many sidebars as you want.
|
|
*/
|
|
|
|
/*
|
|
const sidebars: SidebarsConfig = {
|
|
// By default, Docusaurus generates a sidebar from the docs folder structure
|
|
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
|
|
|
|
// But you can create a sidebar manually
|
|
/*
|
|
tutorialSidebar: [
|
|
'intro',
|
|
'hello',
|
|
{
|
|
type: 'category',
|
|
label: 'Tutorial',
|
|
items: ['tutorial-basics/create-a-document'],
|
|
},
|
|
],
|
|
};
|
|
|
|
*/
|
|
|
|
export default {
|
|
docs: [
|
|
{
|
|
type: 'doc',
|
|
id: 'intro',
|
|
label: 'Introduction',
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'XO 6',
|
|
collapsible: true,
|
|
collapsed: false,
|
|
items:[
|
|
{
|
|
type: 'category',
|
|
label: 'Support',
|
|
collapsible: true,
|
|
collapsed: true,
|
|
items: [
|
|
'xo6/intro_support',
|
|
'xo6/acl-v2',
|
|
'xo6/purchase',
|
|
'xo6/community'
|
|
],
|
|
},
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'XO 5',
|
|
collapsible: true,
|
|
collapsed: false,
|
|
items:[
|
|
{
|
|
type: 'category',
|
|
label: 'Xen Orchestra',
|
|
collapsible: true,
|
|
collapsed: true,
|
|
items: [
|
|
'xo5/releases',
|
|
'xo5/supported_hosts',
|
|
'xo5/installation',
|
|
'xo5/configuration',
|
|
'xo5/credential-encryption',
|
|
'xo5/migrate_to_new_xoa',
|
|
'xo5/updater',
|
|
'xo5/architecture',
|
|
'xo5/troubleshooting',
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Management',
|
|
collapsible: true,
|
|
collapsed: true,
|
|
items: [
|
|
'xo5/manage',
|
|
'xo5/manage_infrastructure',
|
|
'xo5/object-storage-support',
|
|
'xo5/v2v-migration-guide',
|
|
'xo5/users',
|
|
'xo5/vm-templates',
|
|
'xo5/advanced',
|
|
'xo5/load_balancing',
|
|
'xo5/sdn_controller',
|
|
'xo5/restapi',
|
|
'xo5/mcp'
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Backups',
|
|
collapsible: true,
|
|
collapsed: true,
|
|
items: [
|
|
'xo5/intro_backup',
|
|
'xo5/backups',
|
|
'xo5/backup_howto',
|
|
'xo5/proxy',
|
|
'xo5/rolling_snapshots',
|
|
'xo5/full_backups',
|
|
'xo5/incremental_backups',
|
|
'xo5/full_replication',
|
|
'xo5/incremental_replication',
|
|
'xo5/mirror_backup',
|
|
'xo5/metadata_backup',
|
|
'xo5/immutability',
|
|
'xo5/backup_reports',
|
|
'xo5/backup_troubleshooting',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Support',
|
|
collapsible: true,
|
|
collapsed: true,
|
|
items: [
|
|
'xo5/xoa',
|
|
'xo5/license_management'
|
|
],
|
|
},
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Project',
|
|
collapsible: true,
|
|
collapsed: true,
|
|
items: [
|
|
'intro_project',
|
|
{
|
|
type: 'link',
|
|
label: 'Changelog',
|
|
href: 'https://github.com/vatesfr/xen-orchestra/blob/master/CHANGELOG.md#changelog',
|
|
},
|
|
'contributing',
|
|
'licenses',
|
|
{
|
|
type: 'link',
|
|
label: 'Roadmap',
|
|
href: 'https://docs.vates.tech/roadmap/',
|
|
},
|
|
'glossary',
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
//export default sidebars;
|