Skip to content

Commit

Permalink
Apply suggestions from Aaron
Browse files Browse the repository at this point in the history
Co-authored-by: Aaron Crawfis <[email protected]>
  • Loading branch information
willtsai and AaronCrawfis authored Jul 26, 2023
1 parent 5de8af5 commit ca3febc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down

0 comments on commit ca3febc

Please sign in to comment.