mirror of https://github.com/dapr/docs.git
Add the step of installing dependencies to the multi-app run steps in the quickstart tutorial document. Add note for python3 problem in Windows environments.
Signed-off-by: İhsan Baran SÖNMEZ <ibaranson@gmail.com>
This commit is contained in:
parent
8adc5076b2
commit
ade6de8d21
|
@ -60,6 +60,8 @@ With the following command, simultaneously run the following services alongside
|
||||||
```bash
|
```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 .`
|
||||||
|
|
||||||
|
|
||||||
**Expected output**
|
**Expected output**
|
||||||
|
|
||||||
|
|
|
@ -57,6 +57,7 @@ With the following command, simultaneously run the following services alongside
|
||||||
```bash
|
```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 .`
|
||||||
|
|
||||||
**Expected output**
|
**Expected output**
|
||||||
|
|
||||||
|
|
|
@ -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 >}}).
|
Run the `order-processor` service alongside a Dapr sidecar using [Multi-App Run]({{< ref multi-app-dapr-run >}}).
|
||||||
|
|
||||||
```bash
|
```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.
|
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.
|
||||||
|
|
||||||
|
@ -173,7 +174,7 @@ cd state_management/javascript/sdk/order-processor
|
||||||
Run the `order-processor` service alongside a Dapr sidecar.
|
Run the `order-processor` service alongside a Dapr sidecar.
|
||||||
|
|
||||||
```bash
|
```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.
|
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.
|
||||||
|
@ -299,7 +300,7 @@ cd state_management/csharp/sdk/order-processor
|
||||||
Run the `order-processor` service alongside a Dapr sidecar.
|
Run the `order-processor` service alongside a Dapr sidecar.
|
||||||
|
|
||||||
```bash
|
```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.
|
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.
|
||||||
|
@ -423,10 +424,16 @@ In a terminal window, navigate to the `order-processor` directory.
|
||||||
cd state_management/java/sdk/order-processor
|
cd state_management/java/sdk/order-processor
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Install the dependencies:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mvn clean install
|
||||||
|
```
|
||||||
|
|
||||||
Run the `order-processor` service alongside a Dapr sidecar.
|
Run the `order-processor` service alongside a Dapr sidecar.
|
||||||
|
|
||||||
```bash
|
```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.
|
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.
|
||||||
|
@ -553,7 +560,7 @@ cd state_management/go/sdk/order-processor
|
||||||
Run the `order-processor` service alongside a Dapr sidecar.
|
Run the `order-processor` service alongside a Dapr sidecar.
|
||||||
|
|
||||||
```bash
|
```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.
|
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.
|
||||||
|
|
Loading…
Reference in New Issue