c3f21958d2
The todoapp example contains a Netlify plan which uses the latest dagger additions: do & Client API. We are thinking of merging the examples repository into this one to make working with this easier. This is a step in that direction. We are not using the yarn package so that we can revert https://github.com/dagger/dagger/pull/1673 without breaking this implementation. The GitHub Action is WIP, we will continue with that tomorrow: https://github.com/dagger/dagger-for-github/issues/24 Signed-off-by: Gerhard Lazu <gerhard@lazu.co.uk>
115 lines
2.4 KiB
JavaScript
115 lines
2.4 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 Europa 🆕",
|
|
href: "/1200/local-dev",
|
|
},
|
|
],
|
|
europa: [
|
|
{
|
|
type: "category",
|
|
label: "Getting Started",
|
|
collapsible: false,
|
|
collapsed: false,
|
|
items: [
|
|
"getting-started/local-dev",
|
|
"getting-started/ci-environment"
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Core Concepts",
|
|
collapsible: false,
|
|
collapsed: false,
|
|
items: [
|
|
"core-concepts/plan",
|
|
"core-concepts/client",
|
|
"core-concepts/secrets",
|
|
"core-concepts/caching",
|
|
"core-concepts/container-images",
|
|
"core-concepts/packages",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "DRAFTS",
|
|
collapsible: true,
|
|
collapsed: true,
|
|
items: [
|
|
"learn/api",
|
|
"use-cases/go-docker-swarm",
|
|
],
|
|
},
|
|
{
|
|
type: "link",
|
|
label: "🕸 pre-Europa 🕸",
|
|
href: "/",
|
|
},
|
|
],
|
|
};
|