-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathsidebars.js
143 lines (139 loc) · 3.78 KB
/
sidebars.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
module.exports = {
concepts: [
'concepts/introduction',
'concepts/what-is-swarm',
{
type: 'category',
label: 'DISC Storage',
items: [
'concepts/DISC/disc',
'concepts/DISC/kademlia',
'concepts/DISC/neighborhoods',
'concepts/DISC/erasure-coding',
],
collapsed: false
},
{
type: 'category',
label: 'Incentives',
items: [
'concepts/incentives/overview',
'concepts/incentives/redistribution-game',
'concepts/incentives/postage-stamps',
'concepts/incentives/bandwidth-incentives',
'concepts/incentives/price-oracle',
],
collapsed: false
},
'concepts/pss',
'concepts/access-control',
],
desktop: [
'desktop/introduction',
'desktop/install',
'desktop/configuration',
'desktop/access-content',
'desktop/postage-stamps',
'desktop/upload-content',
'desktop/backup-restore',
'desktop/publish-a-website',
'desktop/start-a-blog',
],
bee: [
{
type: 'category',
label: 'Installation',
items: [
'bee/installation/quick-start',
'bee/installation/install',
'bee/installation/build-from-source',
'bee/installation/hive',
'bee/installation/docker',
'bee/installation/connectivity',
'bee/installation/fund-your-node',
],
collapsed: false
},
{
type: 'category',
label: 'Working With Bee',
items: [
'bee/working-with-bee/introduction',
'bee/working-with-bee/configuration',
'bee/working-with-bee/bee-api',
'bee/working-with-bee/logs-and-files',
'bee/working-with-bee/bee-dashboard',
'bee/working-with-bee/swarm-cli',
'bee/working-with-bee/staking',
'bee/working-with-bee/cashing-out',
'bee/working-with-bee/monitoring',
'bee/working-with-bee/backups',
'bee/working-with-bee/upgrading-bee',
'bee/working-with-bee/uninstalling-bee',
'bee/working-with-bee/light-nodes',
'bee/working-with-bee/ultra-light-nodes'
],
collapsed: false
},
'bee/bee-faq',
],
develop: [
{
type: 'category',
label: 'Develop',
items: [
'develop/introduction',
],
collapsed: false
},
{
type: 'category',
label: 'Access the Swarm',
items: [
'develop/access-the-swarm/introduction',
'develop/access-the-swarm/buy-a-stamp-batch',
'develop/access-the-swarm/upload-and-download',
'develop/access-the-swarm/erasure-coding',
'develop/access-the-swarm/store-with-encryption',
'develop/access-the-swarm/host-your-website',
'develop/access-the-swarm/syncing',
'develop/access-the-swarm/pinning',
],
collapsed: false
},
{
type: 'category',
label: 'Tools and Features',
items: [
'develop/tools-and-features/introduction',
'develop/tools-and-features/bee-js',
'develop/tools-and-features/gateway-proxy',
'develop/tools-and-features/chunk-types',
'develop/tools-and-features/feeds',
'develop/tools-and-features/pss',
'develop/tools-and-features/bee-dev-mode',
'develop/tools-and-features/starting-a-test-network',
'develop/tools-and-features/act'
],
collapsed: false
},
{
type: 'category',
label: 'Contribute',
items: [
'develop/contribute/introduction',
'develop/contribute/protocols',
],
collapsed: false
},
],
References: [
'references/smart-contracts',
'references/tokens',
'references/glossary',
'references/community',
'references/fair-data-society',
'references/faq',
'references/awesome-list',
],
};