You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
=== All orchestrations completed successfully! ===
56
52
```
57
53
@@ -65,3 +61,35 @@ npm run example -- ./examples/azure-managed/hello-orchestrations/index.ts 2>&1 |
65
61
66
62
-**Connection refused**: Ensure the DTS emulator is running (`docker compose up -d` from the `examples/azure-managed` directory).
67
63
-**Worker timeout**: The emulator may need a few seconds to start. Retry the command.
64
+
65
+
## Running Against Azure Managed DTS (Cloud)
66
+
67
+
To run this sample against a real [Azure Managed Durable Task Scheduler](https://learn.microsoft.com/azure/durable-task-scheduler/) instead of the local emulator:
68
+
69
+
1.**Create a scheduler and task hub** (if you haven't already) — see the [parent README](../README.md#quick-start-azure-managed-dts--cloud) for `az durabletask` commands.
70
+
71
+
2.**Configure `.env`** for your cloud endpoint:
72
+
73
+
```bash
74
+
cd examples/azure-managed
75
+
cp .env.example .env
76
+
# Edit .env with your scheduler endpoint and task hub name
npm run example -- ./examples/azure-managed/human-interaction/index.ts 2>&1| grep "All human-interaction demos completed successfully"
63
63
```
64
+
65
+
## Running Against Azure Managed DTS (Cloud)
66
+
67
+
To run this sample against a real [Azure Managed Durable Task Scheduler](https://learn.microsoft.com/azure/durable-task-scheduler/) instead of the local emulator:
68
+
69
+
1.**Create a scheduler and task hub** (if you haven't already) — see the [parent README](../README.md#quick-start-azure-managed-dts--cloud) for `az durabletask` commands.
70
+
71
+
2.**Configure `.env`** for your cloud endpoint:
72
+
73
+
```bash
74
+
cd examples/azure-managed
75
+
cp .env.example .env
76
+
# Edit .env with your scheduler endpoint and task hub name
Copy file name to clipboardExpand all lines: examples/azure-managed/lifecycle-management/README.md
+32Lines changed: 32 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,3 +76,35 @@ Result: "Done: tagged-run"
76
76
```bash
77
77
npm run example -- ./examples/azure-managed/lifecycle-management/index.ts 2>&1| grep "All lifecycle demos completed successfully"
78
78
```
79
+
80
+
## Running Against Azure Managed DTS (Cloud)
81
+
82
+
To run this sample against a real [Azure Managed Durable Task Scheduler](https://learn.microsoft.com/azure/durable-task-scheduler/) instead of the local emulator:
83
+
84
+
1.**Create a scheduler and task hub** (if you haven't already) — see the [parent README](../README.md#quick-start-azure-managed-dts--cloud) for `az durabletask` commands.
85
+
86
+
2.**Configure `.env`** for your cloud endpoint:
87
+
88
+
```bash
89
+
cd examples/azure-managed
90
+
cp .env.example .env
91
+
# Edit .env with your scheduler endpoint and task hub name
Copy file name to clipboardExpand all lines: examples/azure-managed/query-and-history/README.md
+32Lines changed: 32 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,3 +72,35 @@ Created 6 orchestration instances.
72
72
```bash
73
73
npm run example -- ./examples/azure-managed/query-and-history/index.ts 2>&1| grep "All query/history demos completed successfully"
74
74
```
75
+
76
+
## Running Against Azure Managed DTS (Cloud)
77
+
78
+
To run this sample against a real [Azure Managed Durable Task Scheduler](https://learn.microsoft.com/azure/durable-task-scheduler/) instead of the local emulator:
79
+
80
+
1.**Create a scheduler and task hub** (if you haven't already) — see the [parent README](../README.md#quick-start-azure-managed-dts--cloud) for `az durabletask` commands.
81
+
82
+
2.**Configure `.env`** for your cloud endpoint:
83
+
84
+
```bash
85
+
cd examples/azure-managed
86
+
cp .env.example .env
87
+
# Edit .env with your scheduler endpoint and task hub name
0 commit comments