Fork me on GitHub
#tools-deps
<
2021-04-07
>
ingesol13:04:17

Hi! Is there a known pattern in tools.deps for loading/running multiple processes in parallel, like CLJS-build, SASS build, reloadable CLJ-system?

ingesol13:04:00

Thanks! That is one option, yes. I was mostly wondering if this was a common problem with well known patterns for people who use tools.deps.

👍 3
Alex Miller (Clojure team)13:04:16

the Clojure CLI runs one program

Alex Miller (Clojure team)13:04:35

if you want to run multiple things, then you need to make something that does that

ingesol13:04:54

Right, that’s what I suspected. I also was hoping that the community had established some patterns for solving this kind of problems. My first idea was to just create a CLJ-script that I could invoke from the CLI, that would simply start those processes. @borkdude provided a bb-technique below, I suppose that is preferable to a JVM script as it leans on OS features for shutdown.

ingesol13:04:42

or at least it seems that the bb-script saves me from having to think about graceful shutdown.

borkdude13:04:57

@ingesol We use this (bb) script at work for launching these three things at once:

#!/usr/bin/env bb

(ns dev)

(require '[babashka.process :refer [destroy-tree process]])

(def opts {:out :inherit
           :err :inherit
           :shutdown destroy-tree})

(defn cljs []
  (process ["clojure" "-Sforce" "-M:frontend:cljs/dev"] opts))

(defn less []
  (process ["clojure" "-Sforce" "-M:frontend:less/dev"] opts))

(def platform-alias
  (case (System/getProperty "os.name")
    "Linux"
    "backend/linux"
    "Windows"
    "backend/windows"
    "Mac OS X"
    "backend/macosx"))

(defn clojure []
  (process ["clojure" "-Sforce"
            (str "-A:backend:backend/dev:" platform-alias)
            "-X" "dre.standalone/start"]
           (assoc opts :in :inherit)))

(cljs)
(less)
(-> @(clojure) :exit (System/exit))

❤️ 6
ingesol13:04:37

That is lovely, thanks

Jeff Evans15:04:07

does anyone have an example of using -J to pass JVM options from the command line in conjunction with -M ? I can get it to work if I put :jvm-opts into deps.edn directly but I’d rather these be specified by people at the command line, and can’t figure out how to do that

Alex Miller (Clojure team)15:04:09

you just -J-Dfoo=bar on the command line

seancorfield15:04:15

-J must come before -M (otherwise it will be treated as a command-line arg to what you are running).

☝️ 3
Jeff Evans15:04:21

aha, that was it, and I guess multiple options need -J multiple times

Jeff Evans15:04:29

tired putting everything into one quoted string and that wasn’t working

Jeff Evans15:04:58

as the docs state 😆

Jeff Evans15:04:10

anyways, thanks to both of you

borkdude18:04:41

Our projects at work are now fully deps.edn-ized, no more boot. Migration complete.

🎉 36
Lone Ranger22:04:01

you work on top of all your opensource stuff!? I figured you'd be FT open source by now!!

borkdude22:04:28

if I got paid to do full time open source, I maybe would. but currently I get sponsored for about 1/5th - 1/4th of what I would need to make that jump. even then, I do like to be grounded in "reality" to get a feel for what the real problems are.

seancorfield18:04:00

Welcome to the future @borkdude! 🙂