Fork me on GitHub
#boot
<
2017-09-27
>
ThadIsNOTFood18:09:33

any tips on using boot with IntelliJ/Cursive? I found a script to output the lein project.clj for IntelliJ use but it doesn't seem to be working. So looking for a better option.

dominicm18:09:50

Switch to Vim troll

dominicm18:09:08

@thaddeus.aid is the project.clj appearing at all?

dominicm18:09:16

@thaddeus.aid So, I haven't done this myself, but I believe you have to run boot in a separate terminal at least once to generate that project.clj

dominicm18:09:11

I think the idea is that you have boot running in a terminal, e.g. boot thing.lein/generate dev

dominicm18:09:20

then you connect from cursive.

ThadIsNOTFood18:09:10

Thanks mate, I really appreciate the help

dominicm18:09:41

No problem 🙂

danielcompton19:09:47

@thaddeus.aid yep that's correct, I have this at the bottom of my build.boot file:

(require 'boot.lein)
(boot.lein/generate)

danielcompton19:09:05

with this dep [onetom/boot-lein-generate "0.1.3" :scope "test"]

ThadIsNOTFood20:09:16

@danielcompton that worked, thanks again