boot

:boot-clj: https://boot-clj.github.io/ — build tooling for Clojure. Dev chat in #boot-dev
OrdoFlammae 2020-03-30T18:59:12.007500Z

I'm trying to look into boot v.s. leiningen, but I can't figure out how to initialize a simple project. What's the equivalent command to lein new from boot?

dave 2020-03-30T20:06:32.009500Z

boot -d boot/new new -t app -n myapp works out of the box, and if you find that you use it a lot, you can add boot-new as a dependency in your personal profile.boot, which makes it so that you can shorten it to boot new -t app -n myapp

OrdoFlammae 2020-03-30T20:06:46.009800Z

Thanks @dave. That answers all my questions.

dave 2020-03-30T20:06:54.010100Z

happy to help!