-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathsidebars.js
212 lines (181 loc) · 6.66 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/**
* Creating a sidebar enables you to:
* - create an ordered group of docs
* - render a sidebar for each doc of that group
* - provide next/previous navigation
*
* The sidebars can be generated from the filesystem, or explicitly defined here.
*
* Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docsSidebar: [
{ type: "autogenerated", dirName: ".", },
],
tutorialsSidebar: [
{
type: 'category',
label: 'Tutorials',
collapsible: false,
collapsed: false,
link: {
type: 'doc',
id: 'tutorials/index',
},
items: [
{
type: 'category',
label: 'Rill Developer to Rill Cloud in 6 steps!',
description: 'Rill Developer to Rill Cloud',
items: [
'tutorials/rill_basics/launch',
'tutorials/rill_basics/import',
'tutorials/rill_basics/model',
'tutorials/rill_basics/metrics-view',
'tutorials/rill_basics/dashboard',
'tutorials/rill_basics/deploy',
'tutorials/rill_basics/success',
]
},
{
type: 'category',
label: "Rill Advanced Features",
description: 'Advanced Features and beyond',
link: {
type: 'doc',
id: 'tutorials/rill_developer_advanced_features/overview',
},
items: [
{
type: 'category',
label: 'Pushing Changes from Rill Developer to Rill Cloud',
description: 'Make some changes to our SQL model and Dashboard',
items: [
'tutorials/rill_developer_advanced_features/advanced_developer/advanced-sources',
'tutorials/rill_developer_advanced_features/advanced_developer/advanced-modeling',
{
type: 'category',
label: 'Advanced Measures and Dimensions',
description: "Advanced Measures and Dimensions",
items: [
'tutorials/rill_developer_advanced_features/advanced_developer/advanced-metrics/new-metrics-view',
'tutorials/rill_developer_advanced_features/advanced_developer/advanced-metrics/advanced-measures',
]
},
'tutorials/rill_developer_advanced_features/advanced_developer/update-rill-cloud',
]
},
{
type: 'category',
label: 'Advanced Models',
description: "Partitioned, Incremental and Staging Models",
items: [
'tutorials/rill_developer_advanced_features/incremental_models/introduction',
{
type: 'category',
label: 'Basic Incremental and Partitions Model Examples',
items: [
'tutorials/rill_developer_advanced_features/incremental_models/simple-examples/incremental_now',
'tutorials/rill_developer_advanced_features/incremental_models/simple-examples/partitions_now',
]
},
'tutorials/rill_developer_advanced_features/incremental_models/cloud-storage-partitions',
'tutorials/rill_developer_advanced_features/incremental_models/data-warehouse-partitions',
'tutorials/rill_developer_advanced_features/incremental_models/staging-connectors'
]
},
{
type: 'category',
label: 'Custom APIs',
description: "Create, Deploy and Test Custom APIs",
items: [
'tutorials/rill_developer_advanced_features/custom_api/getting-started',
'tutorials/rill_developer_advanced_features/custom_api/create-api',
'tutorials/rill_developer_advanced_features/custom_api/test-api',
]
},
{
type: 'category',
label: 'Alerts',
description: "Create Alerts to monitor your Project",
items: [
'tutorials/rill_developer_advanced_features/alerts/create-alert',
'tutorials/rill_developer_advanced_features/alerts/data-accuracy-check',
]
}
]
},
{
type: 'category',
label: 'Rill and ClickHouse to Dashboarding in 5 steps!',
description: 'For our friends from ClickHouse, a revamped guide.',
link: {
type: 'doc',
id: 'tutorials/rill_clickhouse/index',
},
items: [
'tutorials/rill_clickhouse/r_ch_launch',
'tutorials/rill_clickhouse/r_ch_connect',
'tutorials/rill_clickhouse/r_ch_metrics-view',
'tutorials/rill_clickhouse/r_ch_dashboard',
'tutorials/rill_clickhouse/r_ch_deploy',
{
type: 'category',
label: 'Extra Topics:',
items: [
'tutorials/rill_clickhouse/r_ch_ingest',
],
},
]
},
{
type: 'category',
label: 'Administration Topics',
description: 'Rill Administration Topics',
link: {
type: 'doc',
id: 'tutorials/administration/index',
},
items: [
{
type: 'category',
label: 'User Management',
items: [
'tutorials/administration/user/user-management',
'tutorials/administration/user/user-group-management',
]
},
{
type: 'category',
label: 'Project Management',
items: [
'tutorials/administration/project/project-maintanence',
'tutorials/administration/project/credentials-env-variable-management',
'tutorials/administration/project/github',
]
},
]
},
{
type: 'category',
label: "Other Concepts and How-to's",
description: 'For guides that are not quite Rill related but needs consideration',
items: [
// 'tutorials/other/resolvers',
'tutorials/other/add-column-dimension',
'tutorials/other/dashboard-row-policies',
'tutorials/other/embed-dashboard',
'tutorials/other/Rill Cloud/share-dashboard-publicly',
'tutorials/other/avg_avg'
]
},
],
},
],
refSidebar: [
{ type: "autogenerated", dirName: "reference" },
],
};
module.exports = sidebars;