Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
36 changes: 31 additions & 5 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**.

<!--
## Getting started with Nubesgen
Thank you to everyone who used NubesGen over the past few years. We hope it was helpful. The project is now in an archived state, so the domain nubesgen.com no longer hosts the tool, and no further bug or security fixes will be provided.

- 👩‍💻 You love to learn by doing?
- 📺 You prefer watch
-->
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 command line.

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

Expand Down
2 changes: 1 addition & 1 deletion docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.