Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
boot Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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`