From a0d4ead488c60b2cea0af964b35804003de78fda Mon Sep 17 00:00:00 2001 From: Jonathan Dahan Date: Sat, 2 Dec 2017 12:02:29 +0100 Subject: [PATCH] boot: add page --- pages/common/boot.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages/common/boot.md diff --git a/pages/common/boot.md b/pages/common/boot.md new file mode 100644 index 000000000..5a7b2325b --- /dev/null +++ b/pages/common/boot.md @@ -0,0 +1,23 @@ +# boot + +> Build tooling for Clojure. + +- Generate scaffolding for a new project based on a template: + +`boot -d boot/new new --template {{template_name}} --name {{project_name}}` + +- Start a REPL session either with the project or standalone: + +`boot repl` + +- Build for development (if using the boot/new template): + +`boot dev` + +- Build for production (if using the boot/new template): + +`boot prod` + +- Build a single jar: + +`boot jar`