938658eeff
Signed-off-by: Solomon Hykes <solomon@dagger.io>
144 lines
3.2 KiB
JavaScript
144 lines
3.2 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 = {
|
|
preEuropa: [
|
|
{
|
|
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"],
|
|
},
|
|
{
|
|
type: "link",
|
|
label: "Dagger 0.2 ➡️",
|
|
href: "/",
|
|
},
|
|
],
|
|
europa: [
|
|
{
|
|
type: "doc",
|
|
id: "migrate-from-dagger-0.1",
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Getting Started",
|
|
collapsible: false,
|
|
link: {
|
|
type: 'doc',
|
|
id: 'getting-started/index'
|
|
},
|
|
items: ["getting-started/local-dev", "getting-started/ci-environment", "getting-started/vs"],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Core Concepts",
|
|
collapsible: false,
|
|
collapsed: false,
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'Core Concepts',
|
|
},
|
|
items: [
|
|
"core-concepts/action",
|
|
"core-concepts/plan",
|
|
"core-concepts/client",
|
|
"core-concepts/secrets",
|
|
"core-concepts/what-is-cue",
|
|
"core-concepts/cli-telemetry",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Guides",
|
|
collapsible: false,
|
|
collapsed: false,
|
|
items: ["guides/container-images"],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "References",
|
|
collapsible: false,
|
|
collapsed: false,
|
|
items: [
|
|
"references/core-actions-reference",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Use Cases",
|
|
collapsible: false,
|
|
collapsed: false,
|
|
link: {
|
|
type: 'generated-index',
|
|
title: 'Use Cases',
|
|
description:
|
|
"See how others are using Dagger for their CI/CD pipelines. This includes integrating with CI environments.",
|
|
},
|
|
items: [
|
|
"use-cases/go-docker-swarm",
|
|
],
|
|
},
|
|
{
|
|
type: "link",
|
|
label: "⬅️ Dagger 0.1",
|
|
href: "/1200/what/",
|
|
},
|
|
],
|
|
};
|