boot: add page (#1731)

coverage
Starbeamrainbowlabs 2017-12-20 12:03:23 +00:00 committed by GitHub
commit f22d9e4731
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 27 additions and 0 deletions

27
pages/common/boot.md Normal file
View File

@ -0,0 +1,27 @@
# boot
> Build tooling for the Clojure programming language.
- Start a REPL session either with the project or standalone:
`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):
`boot dev`
- Build for production (if using the boot/new template):
`boot prod`