diff --git a/pages/common/lein.md b/pages/common/lein.md new file mode 100644 index 000000000..947a8d5da --- /dev/null +++ b/pages/common/lein.md @@ -0,0 +1,23 @@ +# lein + +> Manage clojure projects with declarative configuration. + +- Generate scaffolding for a new project based on a template: + +`lein new {{template_name}} {{project_name}}` + +- Start a repl session either with the project or standalone: + +`lein repl` + +- Run the project's `-main` function with optional args: + +`lein run {{args}}` + +- Run the project's tests: + +`lein test` + +- Package up the project files and all its dependencies into a jar file: + +`lein uberjar`