mirror of https://github.com/dapr/quickstarts.git
Merge pull request #821 from JaimeStill/master
adjust service_invocation/csharp order-processor port
This commit is contained in:
commit
2554caf535
|
|
@ -46,7 +46,7 @@ sleep: 10
|
|||
|
||||
|
||||
```bash
|
||||
dapr run --app-id order-processor --resources-path ../../../components/ --app-port 7005 -- dotnet run --project .
|
||||
dapr run --app-id order-processor --resources-path ../../../components/ --app-port 7002 -- dotnet run --project .
|
||||
```
|
||||
|
||||
<!-- END_STEP -->
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
"dotnetRunMessages": "true",
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"applicationUrl": "http://localhost:7005",
|
||||
"applicationUrl": "http://localhost:7002",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ sleep: 10
|
|||
|
||||
```bash
|
||||
cd ./order-processor
|
||||
dapr run --app-port 7006 --app-id order-processor --app-protocol http --dapr-http-port 3501 -- dotnet run
|
||||
dapr run --app-port 7001 --app-id order-processor --app-protocol http --dapr-http-port 3501 -- dotnet run
|
||||
```
|
||||
|
||||
<!-- END_STEP -->
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ version: 1
|
|||
apps:
|
||||
- appDirPath: ./order-processor/
|
||||
appID: order-processor
|
||||
appPort: 7006
|
||||
appPort: 7001
|
||||
command: ["dotnet", "run"]
|
||||
- appID: checkout
|
||||
appDirPath: ./checkout/
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
"dotnetRunMessages": "true",
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"applicationUrl": "http://localhost:7006",
|
||||
"applicationUrl": "http://localhost:7001",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue