-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
145 lines (139 loc) · 4.51 KB
/
sidebars.js
File metadata and controls
145 lines (139 loc) · 4.51 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
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
/**
* 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: [
'index',
'installing-stackql',
'providers',
{
type: 'category',
label: 'Getting Started',
items: [
'getting-started/resource-hierarchy',
'getting-started/using-stackql',
'getting-started/using-a-provider',
'getting-started/claude-desktop',
'getting-started/output-modes',
'getting-started/variables',
'getting-started/templating',
]
},
{
type: 'category',
label: 'Command Line Usage',
items: [
'command-line-usage/exec',
'command-line-usage/shell',
'command-line-usage/srv',
'command-line-usage/mcp',
'command-line-usage/registry',
'command-line-usage/global-flags',
]
},
{
type: 'category',
label: 'Language Specification',
items: [
'language-spec/select',
'language-spec/insert',
'language-spec/update',
'language-spec/delete',
'language-spec/replace',
'language-spec/show',
'language-spec/describe',
'language-spec/exec',
'language-spec/createview',
'language-spec/refreshview',
'language-spec/dropview',
'language-spec/with',
'language-spec/registry',
'language-spec/windowing_functions',
{
type: 'category',
label: 'Built-in Functions',
items: [{type: 'autogenerated', dirName: 'language-spec/functions'}]
},
'language-spec/data-types',
'language-spec/lexical-structure',
'language-spec/keywords',
'language-spec/utility-commands',
]
},
{
type: 'category',
label: 'Developers',
items: [{type: 'autogenerated', dirName: 'developers'}]
},
{
type: 'category',
label: 'Tutorials',
link: {
type: 'generated-index',
title: 'StackQL Tutorials',
description: 'StackQL quick starts, how-tos, practical examples and use cases',
slug: '/tutorials',
keywords: ['quickstarts', 'guides', 'how-tos', 'examples', 'use cases'],
image: '/img/stackql-cover.png',
},
items: [
{
type: 'category',
label: 'AWS',
description: 'Practical examples and use cases specific to AWS',
link: {
type: 'generated-index',
title: 'AWS Tutorials',
description: 'Practical examples and use cases specific to AWS',
slug: '/tutorials/aws',
},
items: [{ type: 'autogenerated', dirName: 'tutorials/aws' }],
},
{
type: 'category',
label: 'Microsoft Azure',
description: 'Practical examples and use cases specific to Azure',
link: {
type: 'generated-index',
title: 'Azure Tutorials',
description: 'Practical examples and use cases specific to Azure',
slug: '/azure',
},
items: [{ type: 'autogenerated', dirName: 'tutorials/azure' }],
},
{
type: 'category',
label: 'Google Cloud Platform',
description: 'Practical examples and use cases specific to Google Cloud',
link: {
type: 'generated-index',
title: 'Google Tutorials',
description: 'Practical examples and use cases specific to Google Cloud',
slug: '/tutorials/google',
},
items: [{ type: 'autogenerated', dirName: 'tutorials/google' }],
},
{
type: 'category',
label: 'GitHub',
description: 'Practical examples and use cases specific to GitHub',
link: {
type: 'generated-index',
title: 'GitHub Tutorials',
description: 'Practical examples and use cases specific to GitHub',
slug: '/tutorials/github',
},
items: [{ type: 'autogenerated', dirName: 'tutorials/github' }],
},
],
},
],
};
module.exports = sidebars;