figwheel-main

figwheel-main http://figwheel.org
dominicm 2021-06-04T08:51:33.024500Z

@drewverlee you can set up an editor repl with figwheel, no problem. I don't entirely understand the question 🙂

dominicm 2021-06-05T07:40:09.029800Z

That makes sense to me 🙂 (That's how I always do these connections: figwheel & clojure in the same JVM)

agilecreativity 2021-06-04T14:00:12.026300Z

Is there a way to run two cljs/figwheel-main project at the same time? Or is it always suppose to work with just one project at a time only.

2021-06-04T19:18:54.026400Z

My question was somewhat open ended, i know editor integration is possible. But it was hard to understand in the context of the project i linked how to achieve it. I ended up running cider-jack-in-clj&cljs and that started two n repls. The one devoted to cljs fired up the fighwheel repl. From there I used the clj one to launch the webserver. This seems to have gotten me the functionality i expected.

2021-06-04T19:20:13.027500Z

@agilecreativity you should be able to run as many as you want. I suspect the only collision would be ports. That's my intuition at least.

agilecreativity 2021-06-04T19:23:02.029100Z

yep, just figured it out. It looks like I need to try using the combination of :connect-url, :open-url, and perhaps :ring-server-options

agilecreativity 2021-06-04T19:23:31.029700Z

Otherwise the port will always start at the same e.g. 9500 the default.