curl -fsSL https://get.wagoe.com | bash
The Wagoe installer handles all prerequisites automatically:
curl -fsSL https://get.wagoe.com | bash
Fallback if get.wagoe.com is unavailable:
curl -fsSL https://raw.githubusercontent.com/wagoebv/wagoe/main/scripts/install.sh | bash
Supports macOS, Debian/Ubuntu, Arch Linux, and WSL2.
After installation, proceed to Quickstart.
Install Java 17+, the Clojure CLI, and Babashka (bb) manually if you prefer not to use the installer.
If you already have those installed, skip to Quickstart.
brew install openjdk@17 clojure/tools/clojure borkdude/brew/babashka
sudo apt-get update
sudo apt-get install -y openjdk-17-jdk curl tar
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)
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)
scoop bucket add java && scoop install openjdk17
scoop bucket add scoop-clojure && scoop install clojure
scoop install babashka
java -version
clojure -Sdescribe
bb --version
Wagoe libraries are published to Clojars. Add only what you need:
;; Validation utilities only
{:deps {com.wagoe/wagoe-core {:mvn/version "1.0.1-alpha-42"}}}
;; Full web application stack
{:deps {com.wagoe/wagoe-platform {:mvn/version "1.0.1-alpha-42"}
com.wagoe/wagoe-user {:mvn/version "1.0.1-alpha-42"}
com.wagoe/wagoe-admin {:mvn/version "1.0.1-alpha-42"}}}
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
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |