From de7cde3b3a855bfa15392f0463c4b1a0edfe9b4f Mon Sep 17 00:00:00 2001 From: Christopher MANEU Date: Wed, 29 Jan 2025 09:12:25 +0000 Subject: [PATCH 1/3] chore: add node to devcontainer --- .devcontainer/devcontainer.json | 3 ++- docs/package-lock.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d2e8d5452..b5c4c7caf 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -9,7 +9,8 @@ "azure-cli": "latest", "docker-in-docker": "latest", "github-cli": "latest", - "terraform": "latest" + "terraform": "latest", + "ghcr.io/devcontainers/features/node": "lts" }, "customizations": { diff --git a/docs/package-lock.json b/docs/package-lock.json index ea586057d..4703d106f 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -7,7 +7,7 @@ "": { "name": "docs", "version": "1.0.0", - "license": "ISC", + "license": "MIT", "dependencies": { "vuepress": "^1.9.7" }, From 8376f4c9a1521c4da1c8896e87ffb70be00dabd7 Mon Sep 17 00:00:00 2001 From: Christopher MANEU Date: Wed, 29 Jan 2025 09:12:30 +0000 Subject: [PATCH 2/3] docs: Add deprecation notice --- docs/README.md | 36 +++++++++++++++++++++++++++++++----- 1 file changed, 31 insertions(+), 5 deletions(-) diff --git a/docs/README.md b/docs/README.md index 540d70ef6..40bdd99d0 100644 --- a/docs/README.md +++ b/docs/README.md @@ -2,13 +2,39 @@ Welcome to the Nubesgen documentation. Here you'll find everything you need to learn and **deploy applications and services on Azure in minutes**. +::: danger +**NubesGen has been archived**. - +You can still find the source code and documentation on GitHub, and the latest version of the code is also available as a Docker image. + +Please note that any references to nubesgen.com in this documentation are no longer valid. Instead, we recommend running NubesGen locally (see below for details). + +::: + +## Using NubesGen locally + +1. Download the docker image `ghcr.io/microsoft/nubesgen/nubesgen:main` +1. Run the image, with exposing port 8080 +1. Go to [http://localhost:8080](http://localhost:8080) + +```bash +docker pull ghcr.io/microsoft/nubesgen/nubesgen:main +docker run --name nubesgen -d -p 8080:8080 ghcr.io/microsoft/nubesgen/nubesgen:main +``` + +You'll be able to use Nubesgen, both from the UI or from the commandline. + +Once you're done, you can tear down the container and delete it with the following command: + +```bash +docker stop nubesgen +docker rm nubesgen +## Optional: delete the image from the local cache +docker rmi ghcr.io/microsoft/nubesgen/nubesgen:main + +``` ## Version compatibility From 8d3d15bb0ec8dddba64788bb84d99d22fe03a042 Mon Sep 17 00:00:00 2001 From: Julien Dubois Date: Fri, 31 Jan 2025 10:52:28 +0100 Subject: [PATCH 3/3] Update docs/README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index 40bdd99d0..6b5c3b56e 100644 --- a/docs/README.md +++ b/docs/README.md @@ -24,7 +24,7 @@ docker pull ghcr.io/microsoft/nubesgen/nubesgen:main docker run --name nubesgen -d -p 8080:8080 ghcr.io/microsoft/nubesgen/nubesgen:main ``` -You'll be able to use Nubesgen, both from the UI or from the commandline. +You'll be able to use Nubesgen, both from the UI or from the command line. Once you're done, you can tear down the container and delete it with the following command: