Fork me on GitHub
#boot
<
2020-03-30
>
OrdoFlammae18:03:12

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?

dave20:03:32

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

OrdoFlammae20:03:46

Thanks @dave. That answers all my questions.

dave20:03:54

happy to help!