diff --git a/docs/content/getting-started/quickstarts/quickstart-dapr/index.md b/docs/content/getting-started/quickstarts/quickstart-dapr/index.md index 1d1bfbce2..a4518c99a 100644 --- a/docs/content/getting-started/quickstarts/quickstart-dapr/index.md +++ b/docs/content/getting-started/quickstarts/quickstart-dapr/index.md @@ -4,7 +4,6 @@ title: "Quickstart: Dapr Microservices" linkTitle: "Dapr microservices" description: "Learn Radius by authoring templates and deploying a Dapr application" weight: 300 -no_list: true slug: "dapr" categories: "Quickstart" tags : ["Dapr"] @@ -59,7 +58,7 @@ Begin by creating a new file named `dapr.bicep` with a Radius application that c 1. Press CTRL+C to terminate the port-forward. -1. Confirm that the Dapr Redis statestore was successfully created: +1. A [local-dev Recipe]({{< ref recipes >}}) was run during application deployment to automatically create a lightweight Redis container plus a Dapr component configuration. Confirm that the Dapr Redis statestore was successfully created: ```sh dapr components -k -A @@ -108,7 +107,7 @@ In your browser, navigate to the endpoint (e.g. [http://localhost:8080](http://l 1. Press CTRL+C to terminate the `rad run` log console -1. Run `rad app delete` to cleanup your Radius application, container, and link: +1. Run `rad app delete` to cleanup your Radius application, containers, and Dapr statestore. The Recipe resources (_Redis container and Dapr component_) are also automatically cleaned up. ```bash rad app delete -a dapr diff --git a/docs/content/getting-started/quickstarts/quickstart-dapr/snippets/dapr.bicep b/docs/content/getting-started/quickstarts/quickstart-dapr/snippets/dapr.bicep index 33e222edd..0b8f77cda 100644 --- a/docs/content/getting-started/quickstarts/quickstart-dapr/snippets/dapr.bicep +++ b/docs/content/getting-started/quickstarts/quickstart-dapr/snippets/dapr.bicep @@ -61,8 +61,8 @@ resource frontend 'Applications.Core/containers@2022-03-15-privatepreview' = { // This image is where the app's frontend code lives image: 'radius.azurecr.io/quickstarts/dapr-frontend:edge' env: { - // An environment variable to tell the frontend container where to find the backend - CONNECTION_BACKEND_APPID: 'backend' + // An environment variable to tell the frontend container where to find the backend + CONNECTION_BACKEND_APPID: 'backend' } // The frontend container exposes port 8080, which is used to serve the UI ports: {