mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 05:02:10 +02:00

* pages*: use generic word for help * git: add newline to the end Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages*: make help and version commands comply with the style guide * java: fix Java name --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
28 lines
590 B
Markdown
28 lines
590 B
Markdown
# boot
|
|
|
|
> Build tooling for the Clojure programming language.
|
|
> More information: <https://github.com/boot-clj/boot>.
|
|
|
|
- Start a REPL session either with the project or standalone:
|
|
|
|
`boot repl`
|
|
|
|
- Build a single `uberjar`:
|
|
|
|
`boot jar`
|
|
|
|
- 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):
|
|
|
|
`boot dev`
|
|
|
|
- Build for production (if using the boot/new template):
|
|
|
|
`boot prod`
|
|
|
|
- Display help for a specific task:
|
|
|
|
`boot {{task}} --help`
|