just working through the examples from cljfx repo. everything works fine but i got to examples\e12_interactive_development.clj
which says
;; This file is supposed to be explored from the REPL, evaluating forms one by one from top to bottom.
however, no repl port num is spit out to connect to from editor. i'm not familiar with deps.edn. is there some switch i can give alongside clj -A:examples
to start nrepl or similar?@shooodooken clj -A:examples
starts a local repl in a terminal when you call that command. If you are using IDEA with Cursive, you can add a "Clojure REPL → Local" run configuration with clojure.main
repl type and select "Run with Deps" with examples
alias enabled. If your IDE only speaks to nrepl, you should add a dependency on it and launch it like that:
clj -A:examples -Sdeps '{:deps {nrepl {:mvn/version "0.6.0"}}}' -m nrepl.cmdline
@vlaaad cool thanks. will try that now :thumbsup: