- Replace PDF diagrams with PNG images for inline display in docs - Add infrastructure diagram to Homelab actuel category page - Add network diagram to single-machine HA homelab page - Add Docker Swarm vs Kubernetes decision note in docker-compose page - Complete English translations for homepage tagline - Translate homepage tagline dynamically using Docusaurus i18n - Remove PDF diagram files from static assets (homelab-actuel-infra.pdf, homelab-futur-network.pdf) - Add new documentation pages: Docker Compose, Ansible playbooks, Traefik - Add Future Homelab pages: single-machine HA and 3-node Proxmox cluster - Remove example pages and notions category - Update sidebar configuration
56 lines
1.6 KiB
TypeScript
56 lines
1.6 KiB
TypeScript
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
tutorialSidebar: [
|
|
'presentation',
|
|
{
|
|
type: 'category',
|
|
label: 'Projets OpenClassrooms',
|
|
link: {
|
|
type: 'doc',
|
|
id: 'projets-openclassrooms/index',
|
|
},
|
|
items: [
|
|
'projets-openclassrooms/p02-gestion-itsm',
|
|
'projets-openclassrooms/p03-architecture-reseau',
|
|
'projets-openclassrooms/p04-architecture-ntiers',
|
|
'projets-openclassrooms/p05-securisation-web',
|
|
'projets-openclassrooms/p06-site-distant',
|
|
'projets-openclassrooms/p07-reseau-cisco',
|
|
'projets-openclassrooms/p08-supervision-nagios',
|
|
'projets-openclassrooms/p09-gestion-parc-ansible',
|
|
'projets-openclassrooms/p10-sauvegardes-rsync',
|
|
'projets-openclassrooms/p11-conformite-anssi',
|
|
'projets-openclassrooms/p12-audit-securite-ad',
|
|
'projets-openclassrooms/p13-migration-cloud-aws',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Homelab actuel - Docker Compose & Ansible',
|
|
link: {
|
|
type: 'doc',
|
|
id: 'homelab-actuel/index',
|
|
},
|
|
items: [
|
|
'homelab-actuel/playbooks-ansible',
|
|
'homelab-actuel/docker-compose',
|
|
'homelab-actuel/traefik',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Futur Homelab - OpenTofu, K3S, Ansible & DevOps',
|
|
link: {
|
|
type: 'doc',
|
|
id: 'homelab-futur/index',
|
|
},
|
|
items: [
|
|
'homelab-futur/premiere-version-ha-monomachine',
|
|
'homelab-futur/cluster-3-noeuds-proxmox',
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|