diff --git a/docs/content/contributing/overview/index.md b/docs/content/contributing/overview/index.md index 4e0a0c339..8b7f84d98 100644 --- a/docs/content/contributing/overview/index.md +++ b/docs/content/contributing/overview/index.md @@ -29,8 +29,8 @@ Check out the following table to learn where and how you can contribute: | Repository | Description | Contribution guides | |------------|-------------|---------------------| -| **Radius** | Main repository that contains source code for [`rad` CLI]((https://github.com/radius-project/radius/blob/main/docs/contributing/contributing-code/contributing-code-cli/running-rad-cli.md)), [control plane]((https://github.com/radius-project/radius/blob/main/docs/contributing/contributing-code/contributing-code-control-plane/README.md)) and other components of Radius | [radius-project/radius](https://github.com/radius-project/radius/blob/main/CONTRIBUTING.md)| | **Docs** | Documentation for Radius | [radius-project/docs]({{< ref contributing-docs>}})| -| **Recipes** | Commonly used [Recipe](https://docs.radapp.io/recipes) templates for Radius Environments | [radius-project/recipes](https://github.com/radius-project/recipes/blob/main/CONTRIBUTING.md) |(https://github.com/radius-project/recipes/blob/main/CONTRIBUTING.md) | +| **Radius** | Main repository that contains source code for [`rad` CLI](https://github.com/radius-project/radius/blob/main/docs/contributing/contributing-code/contributing-code-cli/README.md), [control plane](https://github.com/radius-project/radius/blob/main/docs/contributing/contributing-code/contributing-code-control-plane/README.md) and other components of Radius | [radius-project/radius](https://github.com/radius-project/radius/blob/main/CONTRIBUTING.md)| +| **Recipes** | Commonly used [Recipe]({{< ref "guides/recipes/overview">}}) templates for Radius Environments | [radius-project/recipes](https://github.com/radius-project/recipes/blob/main/CONTRIBUTING.md) | | **Dashboard** | The frontend experience for Radius |[radius-project/dashboard](https://github.com/radius-project/dashboard/blob/main/CONTRIBUTING.md) | | **Bicep** | Temporary fork of the [Bicep repo](https://github.com/azure/bicep) used to inject the Radius types into the Bicep language. Contains both the Bicep CLI and the Bicep VS Code extension. | [radius-project/bicep](https://github.com/radius-project/bicep/blob/radius-compiler/CONTRIBUTING.md) | diff --git a/docs/content/guides/author-apps/containers/howto-connect-dependencies/index.md b/docs/content/guides/author-apps/containers/howto-connect-dependencies/index.md index 54e22b152..ed13989f6 100644 --- a/docs/content/guides/author-apps/containers/howto-connect-dependencies/index.md +++ b/docs/content/guides/author-apps/containers/howto-connect-dependencies/index.md @@ -51,7 +51,7 @@ Connections from a container to a resource result in environment variables for c Radius Connections are more than just environment variables and configuration. You can also access the "application graph" and understand the connections within your application with the following command: ```bash -rad app connections -a demo +rad app graph -a demo ``` You should see the following output, detailing the connections between the `demo` container and the `db` Redis cache, along with information about the underlying Kubernetes resources running the app: diff --git a/docs/content/tutorials/new-app/index.md b/docs/content/tutorials/new-app/index.md index c5f26c471..24e8920f1 100644 --- a/docs/content/tutorials/new-app/index.md +++ b/docs/content/tutorials/new-app/index.md @@ -132,10 +132,10 @@ Radius Applications are where all your app's resources and relationships come to demo Applications.Core/containers ``` -1. Run `rad app connections` again to see the container you just deployed: +1. Run `rad app graph` again to see the container you just deployed: ```bash - rad app connections + rad app graph ``` You should see the container you just deployed, along with the underlying Kubernetes resources that were created to run it: @@ -262,10 +262,10 @@ In addition to containers, you can add dependencies like Redis caches, Dapr Stat 1. Press CTRL+C to terminate the port-forward and log stream. -1. Run `rad app connections` again to see the new dependency: +1. Run `rad app graph` again to see the new dependency: ```bash - rad app connections + rad app graph ``` You should see the container and Mongo database you just deployed, along with the underlying Kubernetes resources that were created to run them: