lambdaisland

Karl Xaver 2025-05-07T10:40:48.810829Z

Trying to add some extra nrepl-middleware to my bin/launchpad and assumed this would do it:

(launchpad/main
 {:steps
  (concat launchpad/before-steps
          [(launchpad/add-nrepl-middleware 'flow-storm.nrepl.middleware/wrap-flow-storm)
           launchpad/start-clojure-process]
          launchpad/after-steps)})
But it's not working. Am I on the right track with this?

Karl Xaver 2025-05-07T10:43:57.364029Z

Oh.... I think I see it. Have to add it inside/before launchpad/before-steps , because that includes run-nrepl-server

Karl Xaver 2025-05-07T10:49:00.786199Z

Alright, working now 🙂