-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
85 lines (69 loc) · 3.19 KB
/
sidebars.js
File metadata and controls
85 lines (69 loc) · 3.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/**
* 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.
*/
// @ts-check
// But you can create a sidebar manually
/*
tutorialSidebar: [
'intro',
'hello',
{
type: 'category',
label: 'Tutorial',
items: ['tutorial-basics/create-a-document'],
},
],
*/
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
// mac专区
mac专区: [{ type:'autogenerated', dirName: 'mac专区'}],
// devops
devops: [{type: 'autogenerated', dirName: 'Linux/devops' }],
ansible: [{type: 'autogenerated', dirName: 'Linux/devops/ansible' }],
gitea: [{type: 'autogenerated', dirName: 'Linux/devops/gitea' }],
gitlab: [{type: 'autogenerated', dirName: 'Linux/devops/gitlab' }],
jenkins: [{type: 'autogenerated', dirName: 'Linux/devops/jenkins' }],
spug: [{type: 'autogenerated', dirName: 'Linux/devops/spug' }],
walle: [{type: 'autogenerated', dirName: 'Linux/devops/walle' }],
// 云原生
云原生: [{ type: 'autogenerated', dirName: '云原生/k8s'}],
云原生工具: [{ type: 'autogenerated', dirName: '云原生/云原生工具'}],
容器: [{ type: 'autogenerated', dirName: '云原生/容器'}],
// 编程
go: [{ type: 'autogenerated', dirName: '编程/go'}],
python: [{ type: 'autogenerated', dirName: '编程/python'}],
shell: [{type: 'autogenerated', dirName: '编程/shell'}],
script: [{type: 'autogenerated', dirName: '编程/功能脚本'}],
// Linux
Linux服务: [{ type: 'autogenerated', dirName: 'Linux/Linux服务'}],
Linux命令: [{ type: 'autogenerated', dirName: 'Linux/Linux命令'}],
Linux系统: [{ type: 'autogenerated', dirName: 'Linux/Linux系统'}],
// 监控
prometheus: [{ type: 'autogenerated', dirName: 'Linux/监控/prometheus'}],
zabbix: [{ type: 'autogenerated', dirName: 'Linux/监控/zabbix'}],
grafana: [{ type: 'autogenerated', dirName: 'Linux/监控/grafana'}],
nightingale: [{ type: 'autogenerated', dirName: 'Linux/监控/nightingale'}],
// 数据库
mongodb: [{ type: 'autogenerated', dirName: '数据库/mongodb'}],
mysql: [{ type: 'autogenerated', dirName: '数据库/mysql'}],
redis: [{ type: 'autogenerated', dirName: '数据库/redis'}],
postgres: [{ type: 'autogenerated', dirName: '数据库/postgres'}],
// 云厂商知识点
阿里云: [{ type: 'autogenerated', dirName: '云厂商知识点/阿里云'}],
腾讯云: [{ type: 'autogenerated', dirName: '云厂商知识点/腾讯云'}],
aws: [{ type: 'autogenerated', dirName: '云厂商知识点/aws'}],
// AI
LLM工程平台: [{ type: 'autogenerated', dirName: 'AI/LLM工程平台'}],
AI应用可视化平台: [{ type: 'autogenerated', dirName: 'AI/AI应用可视化平台'}],
AI编程工具: [{ type: 'autogenerated', dirName: 'AI/AI编程工具'}],
openclaw: [{ type: 'autogenerated', dirName: 'AI/openclaw'}],
};
module.exports = sidebars;