mirror of https://github.com/dapr/quickstarts.git
Fix paths for multi-app run
Signed-off-by: Marc Duiker <marcduiker@users.noreply.github.com>
This commit is contained in:
parent
39fcfcf3f9
commit
45d3a43976
|
@ -3,7 +3,7 @@ common:
|
|||
resourcesPath: ../../resources
|
||||
apps:
|
||||
- appID: childworkflows
|
||||
appDirPath: .
|
||||
appDirPath: ChildWorkflows
|
||||
appPort: 5259
|
||||
daprHTTPPort: 3559
|
||||
command: ["dotnet", "run"]
|
||||
|
|
|
@ -3,7 +3,7 @@ common:
|
|||
resourcesPath: ../../resources
|
||||
apps:
|
||||
- appID: externalevents
|
||||
appDirPath: .
|
||||
appDirPath: ExternalEvents
|
||||
appPort: 5258
|
||||
daprHTTPPort: 3558
|
||||
command: ["dotnet", "run"]
|
||||
|
|
|
@ -28,13 +28,3 @@ Content-Type: application/json
|
|||
"OrderId": "{{instanceId}}",
|
||||
"IsApproved": true
|
||||
}
|
||||
|
||||
### Send a rejection event
|
||||
@eventName=approval-event
|
||||
POST {{ daprHost }}/v1.0/workflows/dapr/{{ instanceId }}/raiseEvent/{{ eventName }}
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"OrderId": "{{instanceId}}",
|
||||
"IsApproved": false
|
||||
}
|
|
@ -3,7 +3,7 @@ common:
|
|||
resourcesPath: ../../resources
|
||||
apps:
|
||||
- appID: fanoutfanin
|
||||
appDirPath: .
|
||||
appDirPath: FanOutFanIn
|
||||
appPort: 5256
|
||||
daprHTTPPort: 3556
|
||||
command: ["dotnet", "run"]
|
||||
|
|
|
@ -3,7 +3,7 @@ common:
|
|||
resourcesPath: ../../resources
|
||||
apps:
|
||||
- appID: basic
|
||||
appDirPath: .
|
||||
appDirPath: Basic
|
||||
appPort: 5254
|
||||
daprHTTPPort: 3554
|
||||
command: ["dotnet", "run"]
|
||||
|
|
|
@ -3,7 +3,7 @@ common:
|
|||
resourcesPath: ../../resources
|
||||
apps:
|
||||
- appID: monitor
|
||||
appDirPath: .
|
||||
appDirPath: Monitor
|
||||
appPort: 5257
|
||||
daprHTTPPort: 3557
|
||||
command: ["dotnet", "run"]
|
||||
|
|
|
@ -3,7 +3,7 @@ common:
|
|||
resourcesPath: ../../resources
|
||||
apps:
|
||||
- appID: chaining
|
||||
appDirPath: .
|
||||
appDirPath: TaskChaining
|
||||
appPort: 5255
|
||||
daprHTTPPort: 3555
|
||||
command: ["dotnet", "run"]
|
||||
|
|
|
@ -3,7 +3,7 @@ common:
|
|||
resourcesPath: ../../resources
|
||||
apps:
|
||||
- appID: neverendingworkflow
|
||||
appDirPath: .
|
||||
appDirPath: WorkflowManagement
|
||||
appPort: 5262
|
||||
daprHTTPPort: 3562
|
||||
command: ["dotnet", "run"]
|
||||
|
|
Loading…
Reference in New Issue