Skip to content

Commit 467bd9d

Browse files
committed
update yaml
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
1 parent 3af5b95 commit 467bd9d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

daprdocs/content/en/getting-started/quickstarts/statemanagement-quickstart.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,11 @@ When you run `dapr init`, Dapr creates a default [Multi-App Run template file]({
105105
```yml
106106
version: 1
107107
common:
108-
resourcesPath: ../../../resources/
108+
resourcesPath: ../../resources/
109109
apps:
110110
- appID: order-processor
111111
appDirPath: ./order-processor/
112-
command: ["dotnet", "run"]
112+
command: ["python3" , "app.py"]
113113
```
114114
115115
##### `statestore.yaml` component file
@@ -242,11 +242,11 @@ When you run `dapr init`, Dapr creates a default Multi-App Run template file nam
242242
```yml
243243
version: 1
244244
common:
245-
resourcesPath: ../../../resources/
245+
resourcesPath: ../../resources/
246246
apps:
247247
- appID: order-processor
248248
appDirPath: ./order-processor/
249-
command: ["dotnet", "run"]
249+
command: ["npm", "run", "start"]
250250
```
251251

252252
##### `statestore.yaml` component file
@@ -509,11 +509,11 @@ When you run `dapr init`, Dapr creates a default Multi-App Run template file nam
509509
```yml
510510
version: 1
511511
common:
512-
resourcesPath: ../../../resources/
512+
resourcesPath: ../../resources/
513513
apps:
514514
- appID: order-processor
515515
appDirPath: ./order-processor/
516-
command: ["dotnet", "run"]
516+
command: ["java", "-jar", "target/OrderProcessingService-0.0.1-SNAPSHOT.jar"]
517517
```
518518

519519
##### `statestore.yaml` component file
@@ -641,11 +641,11 @@ When you run `dapr init`, Dapr creates a default Multi-App Run template file nam
641641
```yml
642642
version: 1
643643
common:
644-
resourcesPath: ../../../resources/
644+
resourcesPath: ../../resources/
645645
apps:
646646
- appID: order-processor
647647
appDirPath: ./order-processor/
648-
command: ["dotnet", "run"]
648+
command: ["go", "run", "."]
649649
```
650650

651651
##### `statestore.yaml` component file

0 commit comments

Comments
 (0)