forked from ethersphere/bee-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
96 lines (96 loc) · 2.28 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
module.exports = {
Balls: [
'introduction',
{
type: 'category',
label: 'Installation',
items: [
'installation/quick-start',
'installation/install',
'installation/manual',
'installation/build-from-source',
'installation/rasp-bee-ry-pi',
'installation/hive',
'installation/docker',
'installation/bee-clef',
'installation/connectivity',
'installation/fund-your-node'
],
collapsed: true
},
{
type: 'category',
label: 'Working With Bee',
items: [
'working-with-bee/configuration',
'working-with-bee/debug-api',
'working-with-bee/logs-and-files',
'working-with-bee/bee-tools',
'working-with-bee/cashing-out',
'working-with-bee/monitoring',
'working-with-bee/backups',
'working-with-bee/upgrading-bee',
'working-with-bee/uninstalling-bee'
],
collapsed: true
},
{
type: 'category',
label: 'Access the Swarm',
items: [
'access-the-swarm/introduction',
'access-the-swarm/upload-and-download',
'access-the-swarm/upload-a-directory',
'access-the-swarm/store-with-encryption',
'access-the-swarm/host-your-website',
'access-the-swarm/syncing',
'access-the-swarm/keep-your-data-alive',
'access-the-swarm/pinning',
'access-the-swarm/light-nodes'
],
collapsed: true
},
{
type: 'category',
label: 'Dapps on Swarm',
items: [
'dapps-on-swarm/introduction',
'dapps-on-swarm/develop-on-bee',
'dapps-on-swarm/bee-js',
'dapps-on-swarm/chunk-types',
'dapps-on-swarm/feeds',
'dapps-on-swarm/pss'
],
},
{
type: 'category',
label: 'API Reference',
items: [
'api-reference/api-reference'
],
},
{
type: 'category',
label: 'Bee Developers',
items: [
'bee-developers/useful-dev-info'
],
},
{
type: 'category',
label: 'FAQ',
items: [
'FAQ'
],
},
{
type: 'category',
label: 'Join Us',
items: [
'community/community',
'community/awesome-swarm'
],
collapsed: false
}
]
};