ac6d784714
Signed-off-by: jffarge <jf@dagger.io>
69 lines
1.5 KiB
JavaScript
69 lines
1.5 KiB
JavaScript
/**
|
|
* 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.
|
|
*/
|
|
|
|
module.exports = {
|
|
tutorialSidebar: [
|
|
{
|
|
type: "category",
|
|
label: "Introduction",
|
|
collapsible: true,
|
|
items: ["introduction/what_is", "introduction/vs"],
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "install",
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Learn Dagger",
|
|
collapsible: true,
|
|
collapsed: false,
|
|
items: [
|
|
"learn/what_is_cue",
|
|
"learn/get-started",
|
|
"learn/google-cloud-run",
|
|
"learn/kubernetes",
|
|
"learn/aws-cloudformation",
|
|
"learn/github-actions",
|
|
"learn/dev-cue-package",
|
|
"learn/package-manager",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Use Cases",
|
|
collapsible: true,
|
|
collapsed: true,
|
|
items: ["use-cases/ci"],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Universe - API Reference",
|
|
collapsible: true,
|
|
collapsed: true,
|
|
// generate the sidebar for reference doc automatically
|
|
items: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName: "reference",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Administrator Manual",
|
|
collapsible: true,
|
|
collapsed: true,
|
|
items: ["administrator/operator-manual"],
|
|
},
|
|
],
|
|
};
|