nrepl

https://github.com/nrepl/nrepl || https://nrepl.org
wegi 2020-07-31T06:51:32.153500Z

Yes exactly. I could of course just start the repl and the start the server out of the repl. It would just be a convenience, and I was not sure if I maybe missed an option 😄

dominicm 2020-07-31T06:58:50.153900Z

Can share the snippet I use for this :)

dominicm 2020-07-31T07:03:00.154600Z

clojure -Sdeps '{:deps {nrepl {:mvn/version "0.7.0"}}}' -e "(require 'nrepl.cmdline) (future (nrepl.cmdline/-main))" -m your.main This is no good for short-lived (exiting) processes though, as there's leftover agents.

wegi 2020-07-31T07:08:29.155100Z

This is cool, thanks. I only need it for server processes and in development anyway. Thank you :thumbsup: