Skip to content

Commit

Permalink
Merge pull request #3861 from baransonmez/update-multi-app-run-steps
Browse files Browse the repository at this point in the history
Deficiencies in the steps updated with the multi-app run feature that comes with v12
  • Loading branch information
hhunter-ms authored Dec 21, 2023
2 parents e959735 + a487919 commit 1007192
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ With the following command, simultaneously run the following services alongside
```bash
dapr run -f .
```
> **Note**: Since Python3.exe is not defined in Windows, you may need to change `python3` to `python` in the [`dapr.yaml`]({{< ref "#dapryaml-multi-app-run-template-file" >}}) file before running `dapr run -f .`

**Expected output**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ With the following command, simultaneously run the following services alongside
```bash
dapr run -f .
```
> **Note**: Since Python3.exe is not defined in Windows, you may need to change `python3` to `python` in the [`dapr.yaml`]({{< ref "#dapryaml-multi-app-run-template-file" >}}) file before running `dapr run -f .`
**Expected output**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@ cd state_management/python/sdk/order-processor
Run the `order-processor` service alongside a Dapr sidecar using [Multi-App Run]({{< ref multi-app-dapr-run >}}).

```bash
dapr run -f
dapr run -f .
```
> **Note**: Since Python3.exe is not defined in Windows, you may need to change `python3` to `python` in the [`dapr.yaml`]({{< ref "#dapryaml-multi-app-run-template-file" >}}) file before running `dapr run -f .`
The `order-processor` service writes, reads, and deletes an `orderId` key/value pair to the `statestore` instance [defined in the `statestore.yaml` component]({{< ref "#statestoreyaml-component-file" >}}). As soon as the service starts, it performs a loop.

Expand Down Expand Up @@ -173,7 +174,7 @@ cd state_management/javascript/sdk/order-processor
Run the `order-processor` service alongside a Dapr sidecar.

```bash
dapr run -f
dapr run -f .
```

The `order-processor` service writes, reads, and deletes an `orderId` key/value pair to the `statestore` instance [defined in the `statestore.yaml` component]({{< ref "#statestoreyaml-component-file" >}}). As soon as the service starts, it performs a loop.
Expand Down Expand Up @@ -299,7 +300,7 @@ cd state_management/csharp/sdk/order-processor
Run the `order-processor` service alongside a Dapr sidecar.

```bash
dapr run -f
dapr run -f .
```

The `order-processor` service writes, reads, and deletes an `orderId` key/value pair to the `statestore` instance [defined in the `statestore.yaml` component]({{< ref "#statestoreyaml-component-file" >}}). As soon as the service starts, it performs a loop.
Expand Down Expand Up @@ -423,10 +424,16 @@ In a terminal window, navigate to the `order-processor` directory.
cd state_management/java/sdk/order-processor
```

Install the dependencies:

```bash
mvn clean install
```

Run the `order-processor` service alongside a Dapr sidecar.

```bash
dapr run -f
dapr run -f .
```

The `order-processor` service writes, reads, and deletes an `orderId` key/value pair to the `statestore` instance [defined in the `statestore.yaml` component]({{< ref "#statestoreyaml-component-file" >}}). As soon as the service starts, it performs a loop.
Expand Down Expand Up @@ -553,7 +560,7 @@ cd state_management/go/sdk/order-processor
Run the `order-processor` service alongside a Dapr sidecar.

```bash
dapr run -f
dapr run -f .
```

The `order-processor` service writes, reads, and deletes an `orderId` key/value pair to the `statestore` instance [defined in the `statestore.yaml` component]({{< ref "#statestoreyaml-component-file" >}}). As soon as the service starts, it performs a loop.
Expand Down

0 comments on commit 1007192

Please sign in to comment.