The conductor-clojure
repository provides the client SDKs to build task workers in clojure
Building the task workers in clojure mainly consists of the following steps:
- Setup conductor-clojure package
- Create and run task workers
- Create workflows using code
- Api Docs
- Get the package from clojars
:deps {org.clojure/clojure {:mvn/version "1.11.0"}
io.orkes/conductor-clojure {:mvn/version "0.3.0"}}
Configure the authentication settings if your Conductor server requires authentication.
- keyId: Key for authentication.
- keySecret: Secret for the key.
See Access Control for more details on role-based access control with Conductor and generating API keys for your environment.
;;; define options
{:app-key "some-key",
:app-secret "some-secret",
:url "http://localhost:8080/api/"}
Software Development Kit for Netflix Conductor, written on and providing support for Clojure.