Skip to content

Commit a869c51

Browse files
nthmost-orkesclaude
andcommitted
docs: remove curl|sh one-liner in favor of conductor CLI
The conductor_server.sh one-liner downloaded a 606 MB JAR to the current directory with no progress indicator and ran in the foreground. Replace it with the `conductor server start` CLI approach, which handles download location, caching, and UX correctly. Fixes conductor-oss/getting-started#47 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent e4d0eb5 commit a869c51

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,15 @@ docker run -p 8080:8080 conductoross/conductor:latest
5454
```
5555
The UI will be available at `http://localhost:8080` and the API at `http://localhost:8080/api`
5656

57-
**MacOS / Linux (one-liner):** (If you don't want to use docker, you can install and run the binary directly)
57+
**Conductor CLI** (macOS / Linux, if you don't want to use Docker)
5858
```shell
59-
curl -sSL https://raw.githubusercontent.com/conductor-oss/conductor/main/conductor_server.sh | sh
60-
```
59+
# Installs conductor cli
60+
npm install -g @conductor-oss/conductor-cli
6161

62+
# Start the open source conductor server
63+
conductor server start
64+
# see conductor server --help for all the available commands
65+
```
6266

6367
## Install the SDK
6468

0 commit comments

Comments
 (0)