Merge pull request #821 from JaimeStill/master

adjust service_invocation/csharp order-processor port
This commit is contained in:
Paul Yuknewicz 2023-05-17 09:44:14 -07:00 committed by GitHub
commit 2554caf535
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -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 -->

View File

@ -6,7 +6,7 @@
"dotnetRunMessages": "true",
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "http://localhost:7005",
"applicationUrl": "http://localhost:7002",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}

View File

@ -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 -->

View File

@ -2,7 +2,7 @@ version: 1
apps:
- appDirPath: ./order-processor/
appID: order-processor
appPort: 7006
appPort: 7001
command: ["dotnet", "run"]
- appID: checkout
appDirPath: ./checkout/

View File

@ -6,7 +6,7 @@
"dotnetRunMessages": "true",
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "http://localhost:7006",
"applicationUrl": "http://localhost:7001",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}