2017-10-27 17:30:44 -02:00
|
|
|
# lein
|
|
|
|
|
2017-10-27 17:42:33 -02:00
|
|
|
> Manage clojure projects with declarative configuration.
|
2017-10-27 17:30:44 -02:00
|
|
|
|
|
|
|
- Generate scaffolding for a new project based on a template:
|
|
|
|
|
2017-10-28 16:26:24 -02:00
|
|
|
`lein new {{template_name}} {{project_name}}`
|
2017-10-27 17:30:44 -02:00
|
|
|
|
|
|
|
- Start a repl session either with the project or standalone:
|
|
|
|
|
|
|
|
`lein repl`
|
|
|
|
|
2017-10-28 16:26:24 -02:00
|
|
|
- Run the project's `-main` function with optional args:
|
2017-10-27 17:30:44 -02:00
|
|
|
|
|
|
|
`lein run {{args}}`
|
|
|
|
|
2017-10-27 17:42:33 -02:00
|
|
|
- Run the project's tests:
|
2017-10-27 17:30:44 -02:00
|
|
|
|
|
|
|
`lein test`
|
|
|
|
|
2017-10-28 16:26:24 -02:00
|
|
|
- Package up the project files and all its dependencies into a jar file:
|
2017-10-27 17:30:44 -02:00
|
|
|
|
|
|
|
`lein uberjar`
|