basic structure
This commit is contained in:
@@ -15,21 +15,77 @@
|
||||
@type {import('@docusaurus/plugin-content-docs').SidebarsConfig}
|
||||
*/
|
||||
const sidebars = {
|
||||
// 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',
|
||||
software: [
|
||||
'software/index',
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Tutorial',
|
||||
items: ['tutorial-basics/create-a-document'],
|
||||
label: 'Mediastack',
|
||||
items: [
|
||||
'software/mediastack/introduction',
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Jellyfin',
|
||||
items: [
|
||||
'software/mediastack/jellyfin/introduction',
|
||||
'software/mediastack/jellyfin/installation',
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Jellyseerr',
|
||||
items: [
|
||||
'software/mediastack/jellyseerr/introduction',
|
||||
'software/mediastack/jellyseerr/installation',
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
hardware: [
|
||||
'hardware/index',
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Server',
|
||||
items: [
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Starter-Server',
|
||||
items: ['hardware/server/starter-server/index'],
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
knowhow: [
|
||||
'knowhow/index',
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Linux',
|
||||
items: [
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Basics',
|
||||
items: ['knowhow/linux/basics/index'],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Docker',
|
||||
items: [
|
||||
'knowhow/docker/index',
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Docker Compose',
|
||||
items: ['knowhow/docker/docker-compose/index'],
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Docker Swarm Mode',
|
||||
items: ['knowhow/docker/docker-swarm/index'],
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
*/
|
||||
};
|
||||
|
||||
export default sidebars;
|
||||
|
Reference in New Issue
Block a user