clj-on-windows

For those interested in making clj on Windows https://dev.clojure.org/jira/browse/TDEPS-67. Also see https://github.com/littleli/scoop-clojure.
fabrao 2020-07-06T15:59:44.155900Z

Hello all, I have my dev.edn :

{:paths ["src/clj" "classes"]
 :deps {org.clojure/clojure {:mvn/version "1.10.1"}
        com.sikulix/sikulixapi {:mvn/version "2.0.4"
                                :exclusions [bouncycastle/bctsp-jdk14]}}
 :aliases {:dev {:jvm-opts ["-Dclojure.server.repl={:port,5555,:address,\"10.10.20.82\",:accept,clojure.core.server/repl}" "-Dfile.encoding=UTF-8"]}}}
I donĀ“t know how to deal with :address inside jvm-opts . This is not working. Anyone know how to use with it?

seancorfield 2020-07-06T16:43:41.156800Z

:aliases {:dev {:jvm-opts ["-Dclojure.server.repl={:port,5555,:address,\"\"\"10.10.20.82\"\"\",:accept,clojure.core.server/repl}" "-Dfile.encoding=UTF-8"]}}
Seems to work on Windows Powershell, Windows WSL, Linux, and macOS (which surprised me a bit).

seancorfield 2020-07-06T16:44:18.157500Z

(just in case folks here wondered and are not in #tools-deps where @borkdude reported that worked)

fabrao 2020-07-06T19:38:27.158100Z

Hello Sean, thank you, it works in this way

fabrao 2020-07-06T19:39:00.158600Z

have you ever used remote REPL ?

seancorfield 2020-07-06T20:10:16.159100Z

@fabrao Is that related to your Q in #chlorine or a general question about remote REPLs?