-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebars.js
More file actions
101 lines (100 loc) · 2.4 KB
/
Copy pathsidebars.js
File metadata and controls
101 lines (100 loc) · 2.4 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
{
type: "category",
label: "Introduction",
className: "menu_outer_list",
collapsible: false,
items: [
"about",
"why-thirdstorage",
{
type: "category",
label: "Our Projects",
collapsed: false,
items: ["projects/localhost", "projects/cloud"],
},
"examples",
],
},
{
type: "category",
label: "Getting started",
className: "menu_outer_list",
collapsible: false,
items: [
"getting-started/creating-a-project",
"getting-started/storage-paradigms",
],
},
{
type: "category",
label: "Javascript SDK",
className: "menu_outer_list",
collapsed: false,
items: [
"javascript/quickstart",
"javascript/installation",
"javascript/initialize",
"javascript/api/authentication",
"javascript/api/user-data",
"javascript/api/database",
"javascript/api/storage",
"javascript/api/blockchain-provider",
"javascript/api/sdk-suite",
],
},
{
type: "category",
label: "Hosting",
className: "menu_outer_list",
collapsed: true,
items: [
"hosting/ipfs-hosting",
"hosting/spheron-hosting",
"hosting/decentralized-cloud-hosting",
],
},
{
type: "category",
label: "Multi-node scaling",
className: "menu_outer_list",
collapsed: true,
items: [
"scaling/redundancy-scaling",
"scaling/expansion-scaling",
"scaling/sharded-scaling",
],
},
{
type: "category",
label: "Advanced",
className: "menu_outer_list",
collapsed: true,
items: [
"advanced/cli",
"advanced/api-references",
"advanced/response-codes",
"advanced/creating-paradigms",
],
},
],
specs: [
"specs/home",
"specs/architecture",
"specs/use-cases",
"specs/technical-roadmap",
"specs/cli",
"specs/api-references",
"specs/creating-paradigms",
"specs/wallet-providers",
"specs/blockchain-provider",
"specs/access-control",
"specs/decentralized-backups",
"specs/benchmarks",
"specs/rate-limits",
"specs/multinode-scaling",
],
};
module.exports = sidebars;