/**
* 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",
label: "Learn Dagger",
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",
],
label: "Use Cases",
collapsed: true,
items: ["use-cases/ci"],
label: "Universe - API Reference",
// generate the sidebar for reference doc automatically
type: "autogenerated",
dirName: "reference",
label: "Administrator Manual",
items: ["administrator/operator-manual"],
};