logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Manage Clojure Projects - With Lein | Online Free DevTools by Hexmos

Manage Clojure projects efficiently with Lein, the declarative configuration tool. Generate scaffolding, run tests, and package applications with ease. Free online tool, no registration required.

lein

Manage Clojure projects with declarative configuration. More information: https://leiningen.org.

  • 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

See Also