Liking cljdoc? Tell your friends :D

Installation

Prerequisites

You need Java (17+), Clojure CLI tools, and Babashka (bb).

macOS

brew install openjdk clojure/tools/clojure babashka/brew/babashka

Linux (Debian/Ubuntu)

sudo apt-get update
sudo apt-get install -y openjdk-17-jdk curl tar

# Clojure CLI
curl -L -O https://github.com/clojure/brew-install/releases/latest/download/linux-install.sh
chmod +x linux-install.sh && sudo ./linux-install.sh

# Babashka
bash < <(curl -s https://raw.githubusercontent.com/babashka/babashka/master/install)

Linux (RHEL/Fedora)

sudo dnf install -y java-17-openjdk java-17-openjdk-devel
curl -L -O https://github.com/clojure/brew-install/releases/latest/download/linux-install.sh
chmod +x linux-install.sh && sudo ./linux-install.sh
bash < <(curl -s https://raw.githubusercontent.com/babashka/babashka/master/install)

Windows (PowerShell + Scoop)

scoop bucket add java && scoop install openjdk17
scoop bucket add scoop-clojure && scoop install clojure
scoop install babashka

Verify installation

java -version        # Should show 17+
clojure -version     # Should show 1.12+
bb --version         # Should show 0.8+

Using individual libraries

Boundary libraries are published to Clojars. Add only what you need:

;; Validation utilities only
{:deps {org.boundary-app/boundary-core {:mvn/version "1.0.0-alpha"}}}

;; Full web application stack
{:deps {org.boundary-app/boundary-platform {:mvn/version "1.0.0-alpha"}
        org.boundary-app/boundary-user     {:mvn/version "1.0.0-alpha"}
        org.boundary-app/boundary-admin    {:mvn/version "1.0.0-alpha"}}}

See Library Overview for the complete list of available libraries.

Can you improve this documentation?Edit on GitHub

cljdoc builds & hosts documentation for Clojure/Script libraries

Keyboard shortcuts
Ctrl+kJump to recent docs
Move to previous article
Move to next article
Ctrl+/Jump to the search field
× close