@@ -105,11 +105,11 @@ When you run `dapr init`, Dapr creates a default [Multi-App Run template file]({
105105``` yml
106106version : 1
107107common :
108- resourcesPath : ../../../ resources/
108+ resourcesPath : ../../resources/
109109apps :
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
243243version: 1
244244common:
245- resourcesPath: ../../../ resources/
245+ resourcesPath: ../../resources/
246246apps:
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
510510version: 1
511511common:
512- resourcesPath: ../../../ resources/
512+ resourcesPath: ../../resources/
513513apps:
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
642642version: 1
643643common:
644- resourcesPath: ../../../ resources/
644+ resourcesPath: ../../resources/
645645apps:
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