597 B
597 B
boot
为 Clojure 编程语言构建工具。 更多信息:https://github.com/boot-clj/boot。
- 启动一个 REPL 会话,既可以与项目一起启动,也可以单独启动:
boot repl
- 构建一个单一的
uberjar
:
boot jar
- 基于模板生成一个新项目的脚手架:
boot --dependencies boot/new new --template {{template_name}} --name {{project_name}}
- 为开发构建(如果使用 boot/new 模板):
boot dev
- 为生产构建(如果使用 boot/new 模板):
boot prod
- 显示特定任务的帮助信息:
boot {{task}} --help