# Install Wagoe (JVM, Clojure CLI, Babashka, bbin, wagoe CLI)
curl -fsSL https://get.wagoe.org | bash
# Start a new project
wagoe new my-app
cd my-app
# Add optional modules
wagoe add payments
wagoe list modules
# REPL-driven development (headless nREPL on port 7888 — connect your editor)
source .env # wagoe new generated this, with a real JWT_SECRET
clojure -M:repl
# Scaffold a new module (interactive)
bb scaffold
# Run all tests
clojure -M:test