Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.01 KB

File metadata and controls

39 lines (27 loc) · 1.01 KB

Connect the JS/TS SDK to a Conductor server

Audience: developers running workflows, workers, or Conductor agents locally or against a hosted cluster. Prerequisites: Node.js >= 18.

Local development

Pick one:

docker run -p 8080:8080 conductoross/conductor:latest
curl -sSL https://raw.githubusercontent.com/conductor-oss/conductor/main/conductor_server.sh | sh
npm install -g @conductor-oss/conductor-cli
conductor server start

The Docker image also serves the UI at http://localhost:8080; the API is at http://localhost:8080/api.

Hosted / Orkes Cloud

Set the API URL (including /api) and credentials:

export CONDUCTOR_SERVER_URL="https://your-cluster.orkesconductor.io/api"
export CONDUCTOR_AUTH_KEY="your-key"
export CONDUCTOR_AUTH_SECRET="your-secret"

For agent runs, configure the LLM provider credential on the server before starting it — see security.

Continue with connection/authentication.