-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsidebars.ts
147 lines (145 loc) · 3.59 KB
/
sidebars.ts
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
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
docs: [
"intro",
"create-a-satellite",
"setup-the-sdk",
{
type: "category",
label: "Guides and Examples",
link: {
type: "generated-index",
description:
"Start building with your preferred technologies. Explore our quick start guides and tutorials, designed to assist you in hosting and developing web dapps using your favorite frameworks."
},
items: [
{
type: "autogenerated",
dirName: "guides"
}
]
},
{
type: "category",
label: "Build",
link: {
type: "generated-index",
description:
"Learn about Juno features to build apps running 100% on blockchain without the need to manage servers or write any backend code."
},
items: [
{
type: "category",
label: "Authentication",
link: {
type: "doc",
id: "build/authentication/index"
},
items: [
"build/authentication/development",
"build/authentication/customization",
"build/authentication/management"
]
},
{
type: "category",
label: "Datastore",
link: {
type: "doc",
id: "build/datastore/index"
},
items: ["build/datastore/collections", "build/datastore/development"]
},
{
type: "category",
label: "Storage",
link: {
type: "doc",
id: "build/storage/index"
},
items: ["build/storage/collections", "build/storage/development"]
},
{
type: "category",
label: "Hosting",
link: {
type: "doc",
id: "build/hosting/index"
},
items: ["build/hosting/development", "build/hosting/configuration"]
},
{
type: "category",
label: "Functions",
link: {
type: "doc",
id: "build/functions/index"
},
items: [
"build/functions/lifecycle",
"build/functions/development",
"build/functions/logs"
]
},
{
type: "category",
label: "Analytics",
link: {
type: "doc",
id: "build/analytics/index"
},
items: ["build/analytics/development"]
}
]
},
{
type: "category",
label: "Management",
link: {
type: "generated-index"
},
items: [
{
type: "autogenerated",
dirName: "management"
}
]
},
{
type: "category",
label: "Miscellaneous",
link: {
type: "generated-index"
},
items: [
{
type: "autogenerated",
dirName: "miscellaneous"
}
]
},
"terminology",
"faq",
"troubleshooting",
"pricing"
],
["white-paper"]: [
"white-paper/intro",
"white-paper/what-is-juno",
"white-paper/problems-statement",
"white-paper/solution",
"white-paper/use-cases",
"white-paper/roadmap",
"white-paper/architecture",
"white-paper/infrastructure",
"white-paper/open-source",
"white-paper/business-model",
"white-paper/competitors",
"white-paper/costs-challenges",
"white-paper/validation",
"white-paper/target-audience",
"white-paper/market-size",
"white-paper/conclusion"
]
};
export default sidebars;