File tree Expand file tree Collapse file tree 1 file changed +26
-6
lines changed Expand file tree Collapse file tree 1 file changed +26
-6
lines changed Original file line number Diff line number Diff line change @@ -282,9 +282,19 @@ Start by running the `order-processor` subscriber service.
282
282
283
283
1 . Run the ` order-processor ` service.
284
284
285
- ``` bash
286
- dapr run --app-id order-processor --resources-path ../components/ --app-port 5001 -- python3 app.py
287
- ```
285
+ # [ Windows] ( #tab/windows )
286
+
287
+ ``` bash
288
+ dapr run --app-id order-processor --resources-path ../components/ --app-port 5001 -- python app.py
289
+ ```
290
+
291
+ # [Linux](#tab/linux)
292
+
293
+ ` ` ` bash
294
+ dapr run --app-id order-processor --resources-path ../components/ --app-port 5001 -- python3 app.py
295
+ ` ` `
296
+
297
+ ---
288
298
289
299
1. In a new terminal window, from the sample' s root directory, navigate to the `checkout` publisher service.
290
300
@@ -300,9 +310,19 @@ Start by running the `order-processor` subscriber service.
300
310
301
311
1. Run the `checkout` service.
302
312
303
- ``` bash
304
- dapr run --app-id checkout --resources-path ../components/ -- python3 app.py
305
- ```
313
+ # [Windows](#tab/windows)
314
+
315
+ ```bash
316
+ dapr run --app-id checkout --resources-path ../components/ -- python app.py
317
+ ```
318
+
319
+ # [Linux](#tab/linux)
320
+
321
+ ```bash
322
+ dapr run --app-id checkout --resources-path ../components/ -- python3 app.py
323
+ ```
324
+
325
+ ---
306
326
307
327
#### Expected output
308
328
You can’t perform that action at this time.
0 commit comments