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
-**Temporal .NET SDK** (v1.12.0 or higher). See the [.NET Quickstart](https://docs.temporal.io/develop/dotnet/set-up-your-local-dotnet) for install instructions.
65
63
66
-
-**Temporal CLI** (Pre-release version with Standalone Activity support)
67
-
68
-
Download for your platform:
64
+
-**Temporal CLI** v1.7.0 or higher
69
65
70
-
```bash title="macOS (Apple Silicon)"
71
-
curl -L https://github.com/temporalio/cli/releases/download/v1.6.2-standalone-activity/temporal_cli_1.6.2-standalone-activity_darwin_arm64.tar.gz | tar xz
72
-
```
66
+
Install with Homebrew:
73
67
74
-
```bash title="macOS (Intel)"
75
-
curl -L https://github.com/temporalio/cli/releases/download/v1.6.2-standalone-activity/temporal_cli_1.6.2-standalone-activity_darwin_amd64.tar.gz | tar xz
68
+
```bash
69
+
brew install temporal
76
70
```
77
71
78
-
```bash title="Linux (arm64)"
79
-
curl -L https://github.com/temporalio/cli/releases/download/v1.6.2-standalone-activity/temporal_cli_1.6.2-standalone-activity_linux_arm64.tar.gz | tar xz
80
-
```
81
-
82
-
```bash title="Linux (amd64)"
83
-
curl -L https://github.com/temporalio/cli/releases/download/v1.6.2-standalone-activity/temporal_cli_1.6.2-standalone-activity_linux_amd64.tar.gz | tar xz
84
-
```
72
+
Or see the [Temporal CLI install guide](/cli#install) for other platforms.
85
73
86
74
Verify the installation:
87
75
88
76
```bash
89
-
./temporal --version
90
-
# temporal version 1.6.2-standalone-activity (Server 1.31.0-151.2, UI 2.47.2)
77
+
temporal --version
91
78
```
92
79
93
-
Move the binary to your PATH or run it from the current directory as `./temporal`.
94
-
95
-
:::warning
96
-
97
-
If you see `Standalone activity is disabled` when running commands, you are using the standard
98
-
Temporal CLI instead of the pre-release version above. The standard `brew install temporal` or
99
-
`brew upgrade temporal` does not include Standalone Activity support during Pre-release.
100
-
101
-
:::
102
-
103
80
Start the Temporal development server:
104
81
105
82
```bash
106
-
./temporal server start-dev
83
+
temporal server start-dev
107
84
```
108
85
109
86
This command automatically starts the Temporal development server with the Web UI, and creates the `default` Namespace.
@@ -284,7 +261,7 @@ dotnet run --project src/StandaloneActivity execute-activity
284
261
Or use the Temporal CLI:
285
262
286
263
```bash
287
-
./temporal activity execute \
264
+
temporal activity execute \
288
265
--type ComposeGreeting \
289
266
--activity-id standalone-activity-id \
290
267
--task-queue standalone-activity-sample \
@@ -331,7 +308,7 @@ dotnet run --project src/StandaloneActivity start-activity
331
308
Or use the Temporal CLI:
332
309
333
310
```bash
334
-
./temporal activity start \
311
+
temporal activity start \
335
312
--type ComposeGreeting \
336
313
--activity-id standalone-activity-id \
337
314
--task-queue standalone-activity-sample \
@@ -366,7 +343,7 @@ var result = await handle.GetResultAsync();
366
343
Or use the Temporal CLI to wait for a result by Activity ID:
367
344
368
345
```bash
369
-
./temporal activity result --activity-id my-standalone-activity-id
346
+
temporal activity result --activity-id my-standalone-activity-id
370
347
```
371
348
372
349
## List Standalone Activities {#list-activities}
@@ -405,7 +382,7 @@ dotnet run --project src/StandaloneActivity list-activities
405
382
Or use the Temporal CLI:
406
383
407
384
```bash
408
-
./temporal activity list
385
+
temporal activity list
409
386
```
410
387
411
388
The query parameter accepts the same [List Filter](/list-filter) syntax used for [Workflow
@@ -443,7 +420,7 @@ dotnet run --project src/StandaloneActivity count-activities
443
420
Or use the Temporal CLI:
444
421
445
422
```bash
446
-
./temporal activity count
423
+
temporal activity count
447
424
```
448
425
449
426
## Run Standalone Activities with Temporal Cloud {#run-standalone-activities-temporal-cloud}
0 commit comments