forked from finos/architecture-as-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
84 lines (78 loc) · 2.32 KB
/
sidebars.js
File metadata and controls
84 lines (78 loc) · 2.32 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
/**
* 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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// Default sidebar - shows when clicking CALM logo (introduction, core-concepts, working-with-calm)
docsSidebar: [
'home',
{
type: 'category',
label: 'Introduction',
link: {type: 'doc', id: 'introduction/introduction-index'},
items: [
'introduction/what-is-calm',
'introduction/why-use-calm',
'introduction/key-features',
],
},
{
type: 'category',
label: 'Core Concepts',
link: {type: 'doc', id: 'core-concepts/core-concepts-index'},
items: [
'core-concepts/nodes',
'core-concepts/relationships',
'core-concepts/interfaces',
'core-concepts/controls',
'core-concepts/metadata',
'core-concepts/standards',
],
},
{
type: 'category',
label: 'Working with CALM',
link: {type: 'doc', id: 'working-with-calm/working-with-calm-index'},
items: [
'working-with-calm/installation',
'working-with-calm/using-the-cli',
'working-with-calm/validate',
'working-with-calm/generate',
'working-with-calm/calm-ai-tools',
'working-with-calm/voice-mode',
],
},
],
// Learning sidebar - tutorials
learningSidebar: [
{
type: 'category',
label: 'Tutorials',
link: {type: 'doc', id: 'tutorials/tutorials'},
collapsed: false,
items: [
{
type: 'category',
label: '🟢 Beginner',
link: {type: 'doc', id: 'tutorials/beginner/beginner-tutorials'},
items: [
'tutorials/beginner/01-setup',
'tutorials/beginner/02-first-node',
'tutorials/beginner/03-relationships',
'tutorials/beginner/04-vscode-extension',
'tutorials/beginner/05-interfaces',
'tutorials/beginner/06-metadata',
'tutorials/beginner/07-complete-architecture',
],
},
],
},
],
};
export default sidebars;