Changed path in service invocation tests (#597)

Signed-off-by: Amulya Varote <amulyavarote@QTM-SWATHIKIL-1.redmond.corp.microsoft.com>
This commit is contained in:
amulyavarote 2022-03-11 16:28:42 -08:00 committed by GitHub
parent c36e141185
commit e810618435
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 1598 additions and 1660 deletions

View File

@ -21,7 +21,7 @@ name: Install Dotnet dependencies
-->
```bash
cd service_invocation/csharp/http/order-processor
cd ./order-processor
dotnet restore
dotnet build
```
@ -44,7 +44,7 @@ sleep: 10
-->
```bash
cd service_invocation/csharp/http/order-processor
cd ./order-processor
dapr run --app-port 7001 --app-id order-processor --app-protocol http --dapr-http-port 3501 -- dotnet run
```
@ -59,7 +59,7 @@ name: Install Dotnet dependencies
-->
```bash
cd service_invocation/csharp/http/checkout
cd ./checkout
dotnet restore
dotnet build
```
@ -83,7 +83,7 @@ sleep: 10
-->
```bash
cd service_invocation/csharp/http/checkout
cd ./checkout
dapr run --app-id checkout --app-protocol http --dapr-http-port 3500 -- dotnet run
```

View File

@ -21,7 +21,7 @@ name: Build Go file
-->
```bash
cd service_invocation/go/http/order-processor
cd ./order-processor
go build app.go
```
@ -43,7 +43,7 @@ sleep: 10
-->
```bash
cd service_invocation/go/http/order-processor
cd ./order-processor
dapr run --app-port 6001 --app-id order-processor --app-protocol http --dapr-http-port 3501 -- go run app.go
```
@ -58,7 +58,7 @@ name: Build Go file
-->
```bash
cd service_invocation/go/http/checkout
cd ./checkout
go build app.go
```
<!-- END_STEP -->
@ -80,7 +80,7 @@ sleep: 10
-->
```bash
cd service_invocation/go/http/checkout
cd ./checkout
dapr run --app-id checkout --app-protocol http --dapr-http-port 3500 -- go run app.go
```

View File

@ -21,7 +21,7 @@ name: Install Node dependencies
-->
```bash
cd service_invocation/javascript/http/order-processor
cd ./order-processor
npm install
```
@ -43,7 +43,7 @@ sleep: 10
-->
```bash
cd service_invocation/javascript/http/order-processor
cd ./order-processor
dapr run --app-port 5001 --app-id order-processor --app-protocol http --dapr-http-port 3501 -- npm start
```
@ -58,7 +58,7 @@ name: Install Node dependencies
-->
```bash
cd service_invocation/javascript/http/checkout
cd ./checkout
npm install
```
@ -81,7 +81,7 @@ sleep: 10
-->
```bash
cd service_invocation/javascript/http/checkout
cd ./checkout
dapr run --app-id checkout --app-protocol http --dapr-http-port 3500 -- npm start
```

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -21,7 +21,7 @@ name: Install Python dependencies
-->
```bash
cd service_invocation/python/http/order-processor
cd ./order-processor
pip3 install -r requirements.txt
```
@ -43,7 +43,7 @@ sleep: 10
-->
```bash
cd service_invocation/python/http/order-processor
cd ./order-processor
dapr run --app-port 5001 --app-id order-processor --app-protocol http --dapr-http-port 3501 -- python3 app.py
```
@ -58,7 +58,7 @@ name: Install Python dependencies
-->
```bash
cd service_invocation/python/http/checkout
cd ./checkout
pip3 install -r requirements.txt
```
@ -81,7 +81,7 @@ sleep: 10
-->
```bash
cd service_invocation/python/http/checkout
cd ./checkout
dapr run --app-id checkout --app-protocol http --dapr-http-port 3500 -- python3 app.py
```