# Install Boundary (JVM, Clojure CLI, Babashka, bbin, boundary CLI)
curl -fsSL https://get.boundary-app.org | bash
# Start a new project
boundary new my-app
cd my-app
# Add optional modules
boundary add payments
boundary list modules
# REPL-driven development
export JWT_SECRET="change-me-dev-secret-min-32-chars"
export BND_ENV="development"
clojure -M:repl-clj
# Scaffold a new module (interactive)
bb scaffold
# Run all tests
clojure -M:test:db/h2