Skip to content

Commit 6d88455

Browse files
update from components path to resources path (#781)
Signed-off-by: Hannah Hunter <[email protected]> Signed-off-by: Hannah Hunter <[email protected]> Signed-off-by: Artur Souza <[email protected]> Co-authored-by: Artur Souza <[email protected]>
1 parent 32901b5 commit 6d88455

File tree

70 files changed

+106
-132
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+106
-132
lines changed

bindings/csharp/http/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ timeout_seconds: 30
6161
-->
6262

6363
```bash
64-
dapr run --app-id batch-http --app-port 7001 --components-path ../../../components -- dotnet run
64+
dapr run --app-id batch-http --app-port 7001 --resources-path ../../../components -- dotnet run
6565
```
6666

6767
<!-- END_STEP -->

bindings/csharp/http/batch/program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ limitations under the License.
1818
using Microsoft.AspNetCore.Mvc;
1919

2020

21-
//dapr run --app-id batch-http --app-port 7001 --components-path ../../../components -- dotnet run
21+
//dapr run --app-id batch-http --app-port 7001 --resources-path ../../../components -- dotnet run
2222

2323
var cronBindingName = "cron";
2424
var sqlBindingName = "sqldb";

bindings/csharp/sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ timeout_seconds: 30
6060
-->
6161

6262
```bash
63-
dapr run --app-id batch-sdk --app-port 7002 --components-path ../../../components -- dotnet run
63+
dapr run --app-id batch-sdk --app-port 7002 --resources-path ../../../components -- dotnet run
6464
```
6565

6666
<!-- END_STEP -->

bindings/csharp/sdk/batch/program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ limitations under the License.
1919
using Dapr.Client;
2020

2121

22-
// dapr run --app-id batch-sdk --app-port 7002 --components-path ../../../components -- dotnet run
22+
// dapr run --app-id batch-sdk --app-port 7002 --resources-path ../../../components -- dotnet run
2323

2424
var cronBindingName = "cron";
2525
var sqlBindingName = "sqldb";

bindings/go/http/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ timeout_seconds: 30
6060
-->
6161

6262
```bash
63-
dapr run --app-id batch-http --app-port 6003 --dapr-http-port 3503 --dapr-grpc-port 60003 --components-path ../../../components -- go run .
63+
dapr run --app-id batch-http --app-port 6003 --dapr-http-port 3503 --dapr-grpc-port 60003 --resources-path ../../../components -- go run .
6464
```
6565

6666
<!-- END_STEP -->

bindings/go/http/batch/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ limitations under the License.
1414
package main
1515

1616
/*
17-
dapr run --app-id batch-http --app-port 6003 --dapr-http-port 3503 --dapr-grpc-port 60003 --components-path ../../../components -- go run .
17+
dapr run --app-id batch-http --app-port 6003 --dapr-http-port 3503 --dapr-grpc-port 60003 --resources-path ../../../components -- go run .
1818
*/
1919

2020
import (

bindings/go/sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ timeout_seconds: 30
6060
-->
6161

6262
```bash
63-
dapr run --app-id batch-sdk --app-port 6002 --dapr-http-port 3502 --dapr-grpc-port 60002 --components-path ../../../components -- go run .
63+
dapr run --app-id batch-sdk --app-port 6002 --dapr-http-port 3502 --dapr-grpc-port 60002 --resources-path ../../../components -- go run .
6464
```
6565

6666
<!-- END_STEP -->

bindings/go/sdk/batch/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ limitations under the License.
1414
package main
1515

1616
/*
17-
dapr run --app-id batch-sdk --app-port 6002 --dapr-http-port 3502 --dapr-grpc-port 60002 --components-path ../../../components -- go run .
17+
dapr run --app-id batch-sdk --app-port 6002 --dapr-http-port 3502 --dapr-grpc-port 60002 --resources-path ../../../components -- go run .
1818
*/
1919

2020
import (

bindings/java/http/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ timeout_seconds: 30
6060
-->
6161

6262
```bash
63-
dapr run --app-id batch-http --app-port 8080 --components-path ../../../components -- java -jar target/BatchProcessingService-0.0.1-SNAPSHOT.jar
63+
dapr run --app-id batch-http --app-port 8080 --resources-path ../../../components -- java -jar target/BatchProcessingService-0.0.1-SNAPSHOT.jar
6464
```
6565

6666
<!-- END_STEP -->

bindings/java/sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ timeout_seconds: 30
6060
-->
6161

6262
```bash
63-
dapr run --app-id batch-sdk --app-port 8080 --components-path ../../../components -- java -jar target/BatchProcessingService-0.0.1-SNAPSHOT.jar
63+
dapr run --app-id batch-sdk --app-port 8080 --resources-path ../../../components -- java -jar target/BatchProcessingService-0.0.1-SNAPSHOT.jar
6464
```
6565

6666
<!-- END_STEP -->

0 commit comments

Comments
 (0)