-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsidebars.js
86 lines (79 loc) · 2.02 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
const sidebarSettings = {
docs: [
"docs/introduction",
// Getting Started
{
type: "category",
label: "Getting started",
items: [
{
type: "category",
label: "Prerequisites",
collapsed: true,
items: [
"docs/getting-started/prerequisites/aws-resources",
"docs/getting-started/prerequisites/iam-permissions",
],
},
"docs/getting-started/installation",
],
},
// Configuration
{
type: "category",
label: "Configuration",
items: [
"docs/configuration/table-configuration",
{
type: "category",
label: "Materializations",
collapsed: true,
items: [
"docs/configuration/materializations/hive",
"docs/configuration/materializations/hive-ha",
"docs/configuration/materializations/iceberg",
],
},
"docs/configuration/seeds",
"docs/configuration/snapshots",
"docs/configuration/contract-constraints",
"docs/configuration/lakeformation",
],
},
// Others
"docs/known-issues",
// Migration
{
type: "category",
label: "Migration",
items: [
"docs/migration/UPGRADE-1.5",
],
},
// Contributing
{
type: "category",
label: "Contributing",
items: ["docs/contributing/contributing", "docs/contributing/local-development"],
},
// FAQ
{
type: "category",
label: "Frequently asked questions",
link: {
type: "generated-index",
title: "Frequently asked questions",
description:
"Our Frequently Asked Questions (FAQs) section is a space where you can find an answer to some questions we get asked a lot (but that we’re happy to answer!)",
slug: "/docs/faqs",
},
items: [
{
type: "autogenerated",
dirName: "faqs",
},
],
},
],
};
module.exports = sidebarSettings;