2025-11-14 20:48:21 +01:00
|
|
|
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
|
|
|
|
|
|
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
|
|
|
tutorialSidebar: [
|
|
|
|
|
'presentation',
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
|
|
|
|
label: 'Notions',
|
|
|
|
|
link: {
|
2025-11-15 14:57:36 +01:00
|
|
|
type: 'generated-index',
|
|
|
|
|
title: 'Notions',
|
|
|
|
|
description: 'Concepts et notions techniques fondamentales utilisées dans mes projets.',
|
|
|
|
|
slug: '/category/notions',
|
2025-11-14 20:48:21 +01:00
|
|
|
},
|
2025-11-15 14:57:36 +01:00
|
|
|
items: [
|
|
|
|
|
'notions/index',
|
|
|
|
|
'notions/exemple',
|
|
|
|
|
],
|
2025-11-14 20:48:21 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
|
|
|
|
label: 'Homelab actuel - Docker Compose & Ansible',
|
|
|
|
|
link: {
|
2025-11-15 14:57:36 +01:00
|
|
|
type: 'generated-index',
|
|
|
|
|
title: 'Homelab actuel - Docker Compose & Ansible',
|
|
|
|
|
description: 'Documentation de mon infrastructure homelab actuelle, basée sur Docker Compose et Ansible.',
|
|
|
|
|
slug: '/category/homelab-actuel',
|
2025-11-14 20:48:21 +01:00
|
|
|
},
|
2025-11-15 14:57:36 +01:00
|
|
|
items: [
|
|
|
|
|
'homelab-actuel/index',
|
|
|
|
|
'homelab-actuel/exemple',
|
|
|
|
|
],
|
2025-11-14 20:48:21 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
|
|
|
|
label: 'Futur Homelab - OpenTofu, K3S, Ansible & DevOps',
|
|
|
|
|
link: {
|
2025-11-15 14:57:36 +01:00
|
|
|
type: 'generated-index',
|
|
|
|
|
title: 'Futur Homelab - OpenTofu, K3S, Ansible & DevOps',
|
|
|
|
|
description: 'Documentation de la migration vers une infrastructure moderne basée sur Kubernetes et les pratiques DevOps.',
|
|
|
|
|
slug: '/category/homelab-futur',
|
2025-11-14 20:48:21 +01:00
|
|
|
},
|
2025-11-15 14:57:36 +01:00
|
|
|
items: [
|
|
|
|
|
'homelab-futur/index',
|
|
|
|
|
'homelab-futur/exemple',
|
|
|
|
|
],
|
2025-11-14 20:48:21 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default sidebars;
|