Add link to Europa docs

So that it's easy for anyone to jump to the new docs that we are
currently working on, and intend to replace the existing docs with.

While I would have preferred to link to the local dev page, it's still
stuck in the PR state, currently blocked on another PR:
https://github.com/dagger/dagger/pull/1586

Also added a link to the pre-Europa docs, so that it's easy to go back.

While at it, drop "Sidebar" from the name of sidebars, and replace
tutorial with a more descriptive name.

Signed-off-by: Gerhard Lazu <gerhard@lazu.co.uk>
This commit is contained in:
Gerhard Lazu 2022-03-03 15:05:07 +00:00
parent 94ff9df010
commit f2f2f7c38a
No known key found for this signature in database
GPG Key ID: A28DE70C9444D7A6
15 changed files with 26 additions and 16 deletions

View File

@ -1,6 +1,6 @@
--- ---
slug: /1202/plan slug: /1202/plan
displayed_sidebar: europaSidebar displayed_sidebar: europa
--- ---
# It all starts with a plan # It all starts with a plan

View File

@ -1,6 +1,6 @@
--- ---
slug: /1203/inputs slug: /1203/inputs
displayed_sidebar: europaSidebar displayed_sidebar: europa
--- ---
# Configuring inputs # Configuring inputs

View File

@ -1,6 +1,6 @@
--- ---
slug: /1204/secrets slug: /1204/secrets
displayed_sidebar: europaSidebar displayed_sidebar: europa
--- ---
# How to use secrets # How to use secrets

View File

@ -1,6 +1,6 @@
--- ---
slug: /1205/container-images slug: /1205/container-images
displayed_sidebar: europaSidebar displayed_sidebar: europa
--- ---
# Building container images # Building container images

View File

@ -1,6 +1,6 @@
--- ---
slug: /1206/caching slug: /1206/caching
displayed_sidebar: europaSidebar displayed_sidebar: europa
--- ---
# Make your builds fast # Make your builds fast

View File

@ -1,6 +1,6 @@
--- ---
slug: /1207/packages slug: /1207/packages
displayed_sidebar: europaSidebar displayed_sidebar: europa
--- ---
# Create your own package # Create your own package

View File

@ -1,6 +1,6 @@
--- ---
slug: /1200/local-ci slug: /1200/local-ci
displayed_sidebar: europaSidebar displayed_sidebar: europa
--- ---
# Local CI setup # Local CI setup

View File

@ -1,6 +1,6 @@
--- ---
slug: /1201/ci-cd-platform slug: /1201/ci-cd-platform
displayed_sidebar: europaSidebar displayed_sidebar: europa
--- ---
# From local dev to CI/CD platform # From local dev to CI/CD platform

View File

@ -1,6 +1,6 @@
--- ---
slug: /1213/api slug: /1213/api
displayed_sidebar: europaSidebar displayed_sidebar: europa
--- ---
# Dagger CUE API (0.2+) # Dagger CUE API (0.2+)

View File

@ -1,6 +1,6 @@
--- ---
slug: /1208/phoenix-kubernetes slug: /1208/phoenix-kubernetes
displayed_sidebar: europaSidebar displayed_sidebar: europa
--- ---
# Elixir/Phoenix on Kubernetes # Elixir/Phoenix on Kubernetes

View File

@ -1,6 +1,6 @@
--- ---
slug: /1209/docusaurus-netlify slug: /1209/docusaurus-netlify
displayed_sidebar: europaSidebar displayed_sidebar: europa
--- ---
# Docusaurus on Netlify # Docusaurus on Netlify

View File

@ -1,6 +1,6 @@
--- ---
slug: /1210/go-goreleaser slug: /1210/go-goreleaser
displayed_sidebar: europaSidebar displayed_sidebar: europa
--- ---
# Go with GoReleaser # Go with GoReleaser

View File

@ -1,6 +1,6 @@
--- ---
slug: /1211/go-docker-swarm slug: /1211/go-docker-swarm
displayed_sidebar: europaSidebar displayed_sidebar: europa
--- ---
# Go on Docker Swarm # Go on Docker Swarm

View File

@ -1,6 +1,6 @@
--- ---
slug: /1212/svelte-vercel slug: /1212/svelte-vercel
displayed_sidebar: europaSidebar displayed_sidebar: europa
--- ---
# Svelte on Vercel # Svelte on Vercel

View File

@ -10,7 +10,7 @@
*/ */
module.exports = { module.exports = {
tutorialSidebar: [ preEuropa: [
{ {
type: "category", type: "category",
label: "Introduction", label: "Introduction",
@ -64,8 +64,13 @@ module.exports = {
collapsed: true, collapsed: true,
items: ["administrator/operator-manual"], items: ["administrator/operator-manual"],
}, },
{
type: "link",
label: "🆕 Dagger Europa 🆕",
href: "/1201/ci-cd-platform",
},
], ],
europaSidebar: [ europa: [
{ {
type: "category", type: "category",
label: "Getting Started", label: "Getting Started",
@ -103,5 +108,10 @@ module.exports = {
"use-cases/svelte-vercel", "use-cases/svelte-vercel",
], ],
}, },
{
type: "link",
label: "🕸 pre-Europa 🕸",
href: "/",
},
], ],
}; };