1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 01:26:03 +02:00

Incorporate review feedback

This commit is contained in:
Jonathan Dahan 2017-12-04 15:48:43 +01:00
parent a0d4ead488
commit fbdab559bc

View file

@ -1,15 +1,23 @@
# boot # boot
> Build tooling for Clojure. > Build tooling for the Clojure programming language.
- 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: - Start a REPL session either with the project or standalone:
`boot repl` `boot repl`
- Build a single "uberjar":
`boot jar`
- Learn about a command:
`boot cljs --help`
- Generate scaffolding for a new project based on a template:
`boot --dependencies boot/new new --template {{template_name}} --name {{project_name}}`
- Build for development (if using the boot/new template): - Build for development (if using the boot/new template):
`boot dev` `boot dev`
@ -17,7 +25,3 @@
- Build for production (if using the boot/new template): - Build for production (if using the boot/new template):
`boot prod` `boot prod`
- Build a single jar:
`boot jar`