-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathsidebars-full-node-setup.js
More file actions
64 lines (61 loc) · 1.83 KB
/
sidebars-full-node-setup.js
File metadata and controls
64 lines (61 loc) · 1.83 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
// @ts-check
/**
* Sidebar for the "full-node-setup" docs section.
*
* Manually grouped into role-aware buckets so readers can see, from the
* outset, that a Full Node specializes into a Validator OR an RPC/API node.
* Pages still live in their original filesystem locations; URLs are unchanged.
*/
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
'README',
{
type: 'category',
label: '🛠️ Install & Run',
collapsed: false,
link: { type: 'doc', id: 'install-and-run' },
items: [
'server-setup',
'hub-setup',
'hub-config',
'system-unit',
'node-run',
'upgrade',
{
type: 'html',
value: '<hr style="margin: 0.75rem 1rem; border: 0; border-top: 1px solid var(--ifm-color-emphasis-300);" />',
},
{
type: 'category',
label: '🐳 Docker',
link: { type: 'doc', id: 'docker/overview' },
items: [{ type: 'autogenerated', dirName: 'docker' }],
},
],
},
{
type: 'category',
label: '✅ Validate',
link: { type: 'doc', id: 'validate/README' },
items: [{ type: 'autogenerated', dirName: 'validate' }],
},
{
type: 'category',
label: '🌐 Set Up Public RPC/API',
link: { type: 'doc', id: 'public-rpc-api/README' },
items: [{ type: 'autogenerated', dirName: 'public-rpc-api' }],
},
{
type: 'html',
value: '<hr style="margin: 0.75rem 1rem; border: 0; border-top: 1px solid var(--ifm-color-emphasis-300);" />',
},
{
type: 'category',
label: '🌉 IBC Relayers',
link: { type: 'doc', id: 'ibc-relayers/README' },
items: [{ type: 'autogenerated', dirName: 'ibc-relayers' }],
},
],
};
module.exports = sidebars;