mirror of https://github.com/dapr/docs.git
Merge pull request #4323 from hhunter-ms/issue_4144
[Workflow] Clarify/correct quickstarts set up steps
This commit is contained in:
commit
98090571b5
|
@ -66,12 +66,18 @@ Install the Dapr Python SDK package:
|
||||||
pip3 install -r requirements.txt
|
pip3 install -r requirements.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
### Step 3: Run the order processor app
|
Return to the `python/sdk` directory:
|
||||||
|
|
||||||
In the terminal, start the order processor app alongside a Dapr sidecar using [Multi-App Run]({{< ref multi-app-dapr-run >}}):
|
```bash
|
||||||
|
cd ..
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
### Step 3: Run the order processor app
|
||||||
|
|
||||||
|
In the terminal, start the order processor app alongside a Dapr sidecar using [Multi-App Run]({{< ref multi-app-dapr-run >}}). From the `python/sdk` directory, run the following command:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd workflows/python/sdk
|
|
||||||
dapr run -f .
|
dapr run -f .
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -308,12 +314,11 @@ Install the dependencies:
|
||||||
cd ./javascript/sdk
|
cd ./javascript/sdk
|
||||||
npm install
|
npm install
|
||||||
npm run build
|
npm run build
|
||||||
cd ..
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Step 3: Run the order processor app
|
### Step 3: Run the order processor app
|
||||||
|
|
||||||
In the terminal, start the order processor app alongside a Dapr sidecar using [Multi-App Run]({{< ref multi-app-dapr-run >}}):
|
In the terminal, start the order processor app alongside a Dapr sidecar using [Multi-App Run]({{< ref multi-app-dapr-run >}}). From the `javascript/sdk` directory, run the following command:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
dapr run -f .
|
dapr run -f .
|
||||||
|
@ -515,15 +520,28 @@ Clone the [sample provided in the Quickstarts repo](https://github.com/dapr/quic
|
||||||
git clone https://github.com/dapr/quickstarts.git
|
git clone https://github.com/dapr/quickstarts.git
|
||||||
```
|
```
|
||||||
|
|
||||||
In a new terminal window, navigate to the `sdk` directory:
|
In a new terminal window, navigate to the `order-processor` directory:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd workflows/csharp/sdk
|
cd workflows/csharp/sdk/order-processor
|
||||||
|
```
|
||||||
|
|
||||||
|
Install the dependencies:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
dotnet restore
|
||||||
|
dotnet build
|
||||||
|
```
|
||||||
|
|
||||||
|
Return to the `csharp/sdk` directory:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd ..
|
||||||
```
|
```
|
||||||
|
|
||||||
### Step 3: Run the order processor app
|
### Step 3: Run the order processor app
|
||||||
|
|
||||||
In the terminal, start the order processor app alongside a Dapr sidecar using [Multi-App Run]({{< ref multi-app-dapr-run >}}):
|
In the terminal, start the order processor app alongside a Dapr sidecar using [Multi-App Run]({{< ref multi-app-dapr-run >}}). From the `csharp/sdk` directory, run the following command:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
dapr run -f .
|
dapr run -f .
|
||||||
|
@ -779,9 +797,15 @@ Install the dependencies:
|
||||||
mvn clean install
|
mvn clean install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Return to the `java/sdk` directory:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd ..
|
||||||
|
```
|
||||||
|
|
||||||
### Step 3: Run the order processor app
|
### Step 3: Run the order processor app
|
||||||
|
|
||||||
In the terminal, start the order processor app alongside a Dapr sidecar using [Multi-App Run]({{< ref multi-app-dapr-run >}}):
|
In the terminal, start the order processor app alongside a Dapr sidecar using [Multi-App Run]({{< ref multi-app-dapr-run >}}). From the `java/sdk` directory, run the following command:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd workflows/java/sdk
|
cd workflows/java/sdk
|
||||||
|
@ -1114,7 +1138,7 @@ cd workflows/go/sdk
|
||||||
|
|
||||||
### Step 3: Run the order processor app
|
### Step 3: Run the order processor app
|
||||||
|
|
||||||
In the terminal, start the order processor app alongside a Dapr sidecar using [Multi-App Run]({{< ref multi-app-dapr-run >}}):
|
In the terminal, start the order processor app alongside a Dapr sidecar using [Multi-App Run]({{< ref multi-app-dapr-run >}}). From the `go/sdk` directory, run the following command:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
dapr run -f .
|
dapr run -f .
|
||||||
|
|
Loading…
Reference in New Issue