-
Notifications
You must be signed in to change notification settings - Fork 8
/
sidebars copy.js
164 lines (158 loc) Β· 5.28 KB
/
sidebars copy.js
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/**
* 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.
*/
module.exports = {
// By default, Docusaurus generates a sidebar from the docs folder structure
//tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
// But you can create a sidebar manually
tutorialSidebar: [
'README',
{
type: 'category',
label: 'Stake Pool Guides',
link:{
type: 'generated-index',
title: 'Stake Pool Guides',
slug: '/stake-pool-guides/',
keywords: ['guides'],
},
items: [
{
type: 'category',
collapsible: true,
label: 'Pi-Node Full-Guide (Ubuntu Server)',
link:{
type: 'generated-index',
title: 'Pi-Node Full-Guide (Ubuntu Server)',
slug: 'stake-pool-guides/pi-node-full-guide/',
keywords: ['guides'],
},
items: [
{
type: 'doc',
label:'Introduction & Hardware',
id: 'stake-pool-guides/pi-pool-tutorial/README'
},
'stake-pool-guides/pi-pool-tutorial/pi-node-full-guide/download-and-flash',
'stake-pool-guides/pi-pool-tutorial/pi-node-full-guide/logging-in-securely',
'stake-pool-guides/pi-pool-tutorial/pi-node-full-guide/user-setup',
'stake-pool-guides/pi-pool-tutorial/pi-node-full-guide/server-setup',
'stake-pool-guides/pi-pool-tutorial/pi-node-full-guide/environment-setup'
],
},
'stake-pool-guides/pi-pool-tutorial/pi-node-quick',
'stake-pool-guides/pi-pool-tutorial/pi-relay',
'stake-pool-guides/pi-pool-tutorial/core-online',
'stake-pool-guides/pi-pool-tutorial/cold-offline',
'stake-pool-guides/pi-pool-tutorial/rotate-kes',
'stake-pool-guides/pi-pool-tutorial/update-registration-cert',
{
type: 'doc',
label: 'Stakepool Operator Scripts Guide',
id: 'stake-pool-guides/pi-pool-tutorial/stakepoolscripts'
},
{
type: 'doc',
label: 'Docker Image (Arm64)',
id:'stake-pool-guides/docker-pool-guide'
},
{
type:'doc',
label: 'Pi-Node (Raspberry Pi OS Desktop Guide) π',
id: 'stake-pool-guides/Raspberry-pi-os'
},
'stake-pool-guides/alpine-linux-os',
'stake-pool-guides/m1-asahi-linux',
{
type: 'category',
label: 'Apple M1 macOS π',
link:{
type: 'generated-index',
title: 'Apple M1 macOS π',
slug: '/stake-pool-guides/apple-m1-guide/',
keywords: ['guides'],
},
items:[
{
type: 'doc',
label: 'Introduction',
id: 'stake-pool-guides/m1-native-macos-11-build/README'
},
'stake-pool-guides/m1-native-macos-11-build/node-build',
'stake-pool-guides/m1-native-macos-11-build/finishing-up'
]
},
'stake-pool-guides/basic-stake-pool-networking',
'stake-pool-guides/add-adapools-info-to-grafana',
{
type: 'category',
collapsible: true,
label: 'Updating a Cardano Node',
link:{
type: 'generated-index',
title: 'Updating a Cardano Node',
slug: '/stake-pool-guides/updating-a-cardano-node',
keywords: ['guides'],
},
items: [
'stake-pool-guides/updating-a-cardano-node/using-dynamic-build',
'stake-pool-guides/updating-a-cardano-node/static-build'
]
},
'stake-pool-guides/leader-logs',
'stake-pool-guides/wireguard-guide',
'stake-pool-guides/grafana-alerts-with-telegram'
],
},
{
type: 'category',
label: 'Other Cardano Guides',
link:{
type: 'generated-index',
title: 'Other Cardano Guides',
slug: '/cardano-developer-guides/',
keywords: ['guides'],
},
items: [
'cardano-developer-guides/nft-native-assets',
//'cardano-developer-guides/cardano-nft-collection-tutorial-coming-soon', // Deprecated - Needs update
'cardano-developer-guides/cardano-submit-tx-api-tutorial',
'cardano-developer-guides/create-.img-file',
'cardano-developer-guides/how-to-delegate-ada'
],
},
{
type: 'category',
label: 'How to Contribute',
link:{
type: 'generated-index',
title: 'Contributing to our Guides',
slug: '/contribute/',
keywords: ['contribute'],
},
items: [
'delegate',
{
type: 'category',
label: 'Contribute π±βπ',
link:{
type: 'generated-index',
title: 'Contribute π±βπ',
slug: 'how-to-contribute',
keywords: ['contribute'],
},
items:[
'how-to-contribute/contributing-guide',
'how-to-contribute/style-guide',
'how-to-contribute/code-of-conduct'
]
}
],
}
]
};