From 75c37db6a84d0d205f4a183fbdd6a0d67e182e38 Mon Sep 17 00:00:00 2001 From: Viktor Farcic Date: Mon, 14 Oct 2024 18:17:11 +0200 Subject: [PATCH] Update README.md --- README.md | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e130ed1..99b2362 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,32 @@ -# Demo Manifests and Code Used in DevOps Toolkit Videos +# Backstage Demo + +## Demo Manifests and Code Used in DevOps Toolkit Videos [![Getting Started with Backstage: From Zero to Operational Dev Portal](https://img.youtube.com/vi/A-3Ai--Z-Gs/0.jpg)](https://youtu.be/A-3Ai--Z-Gs) + +## Setup + +```sh +devbox shell + +chmod +x setup/setup.nu + +./setup/setup.nu + +source .env +``` + +## Run Backstage Locally + +```sh +cd backstage + +yarn dev +``` + +## Run Backstage in Kubernetes + +```sh helm upgrade --install backstage \ oci://ghcr.io/vfarcic/backstage-demo/backstage-demo \ --version $TAG --namespace backstage \ @@ -13,4 +39,4 @@ helm upgrade --install backstage \ ```sh kind delete cluster -``` \ No newline at end of file +```