Merge pull request #1679 from dagger/add-link-to-europa-docs

Add link to Europa docs
This commit is contained in:
Gerhard Lazu 2022-03-03 15:19:54 +00:00 committed by GitHub
commit de703b1a3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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: "/",
},
], ],
}; };