Skip to content

Commit 2ce59ff

Browse files
Document Linux and Windows CLI install paths in server-setup
Closes QS-004. The server-setup CLI section only showed the macOS Homebrew install. Linux operators — the majority — had no way to follow the docs since the tap only publishes darwin artifacts. Now shows three install options in order (install.sh for Linux/macOS, brew tap for macOS, install.ps1 for Windows) and links to the platform-detecting installer on the CLI page. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 6fc76a2 commit 2ce59ff

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

docs/server-setup.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,9 +263,15 @@ See the [server README](https://github.com/durable-workflow/server#getting-start
263263
The [Durable Workflow CLI](/docs/2.0/cli) provides a shell interface to the server:
264264

265265
```bash
266-
# Install
266+
# Install — Linux and macOS
267+
curl -fsSL https://durable-workflow.com/install.sh | sh
268+
269+
# Install — macOS (Homebrew alternative)
267270
brew install durable-workflow/tap/dw
268271

272+
# Install — Windows (PowerShell)
273+
# irm https://durable-workflow.com/install.ps1 | iex
274+
269275
# Configure
270276
export DURABLE_WORKFLOW_SERVER_URL=http://localhost:8080
271277
export DURABLE_WORKFLOW_AUTH_TOKEN=your-token
@@ -277,6 +283,8 @@ dw workflow:list
277283
dw workflow:start --type=my-workflow --input='{"key":"value"}'
278284
```
279285

286+
See the [CLI install page](/docs/2.0/cli#install) for a platform-detecting installer and direct binary downloads.
287+
280288
## Deployment
281289

282290
### Docker

0 commit comments

Comments
 (0)