@@ -71,7 +71,7 @@ Start by running the `order-processor` subscriber service with Dapr.
71
71
1 . Run the ` order-processor ` service with Dapr.
72
72
73
73
``` bash
74
- dapr run --app-port 5001 --app-id order-processing --app-protocol http --dapr-http-port 3501 --components -path ../components -- npm run start
74
+ dapr run --app-port 5001 --app-id order-processing --app-protocol http --dapr-http-port 3501 --resources -path ../components -- npm run start
75
75
```
76
76
77
77
1 . In a new terminal window, from the sample's root directory, navigate to the ` checkout ` publisher service.
@@ -89,7 +89,7 @@ Start by running the `order-processor` subscriber service with Dapr.
89
89
1 . Run the ` checkout ` service with Dapr.
90
90
91
91
``` bash
92
- dapr run --app-id checkout --app-protocol http --components -path ../components -- npm run start
92
+ dapr run --app-id checkout --app-protocol http --resources -path ../components -- npm run start
93
93
```
94
94
95
95
#### Expected output
@@ -283,7 +283,7 @@ Start by running the `order-processor` subscriber service with Dapr.
283
283
1 . Run the ` order-processor ` service with Dapr.
284
284
285
285
``` bash
286
- dapr run --app-id order-processor --components -path ../components/ --app-port 5001 -- python3 app.py
286
+ dapr run --app-id order-processor --resources -path ../components/ --app-port 5001 -- python3 app.py
287
287
```
288
288
289
289
1 . In a new terminal window, from the sample's root directory, navigate to the ` checkout ` publisher service.
@@ -301,7 +301,7 @@ Start by running the `order-processor` subscriber service with Dapr.
301
301
1 . Run the ` checkout ` service with Dapr.
302
302
303
303
``` bash
304
- dapr run --app-id checkout --components -path ../components/ -- python3 app.py
304
+ dapr run --app-id checkout --resources -path ../components/ -- python3 app.py
305
305
```
306
306
307
307
#### Expected output
@@ -495,7 +495,7 @@ Start by running the `order-processor` subscriber service with Dapr.
495
495
1 . Run the ` order-processor ` service with Dapr.
496
496
497
497
``` bash
498
- dapr run --app-id order-processor --components -path ../components/ --app-port 7001 -- dotnet run --project .
498
+ dapr run --app-id order-processor --resources -path ../components/ --app-port 7001 -- dotnet run --project .
499
499
```
500
500
501
501
1 . In a new terminal window, from the sample's root directory, navigate to the ` checkout ` publisher service.
@@ -513,7 +513,7 @@ Start by running the `order-processor` subscriber service with Dapr.
513
513
1 . Run the ` checkout ` service with Dapr.
514
514
515
515
``` bash
516
- dapr run --app-id checkout --components -path ../components/ -- dotnet run --project .
516
+ dapr run --app-id checkout --resources -path ../components/ -- dotnet run --project .
517
517
```
518
518
519
519
#### Expected output
0 commit comments