Just working on getting Braid up and running. Does someone know what this means? No implementation of method: :make-reader of protocol: #'<http://clojure.java.io/IOFactory|clojure.java.io/IOFactory> found for class: nil
happens after I run lein run -m clojure.main script/figwheel.clj
when following these up and running instructions https://github.com/braidchat/braid/blob/master/developing.md
Actually happening straight after I start the server now (chat.server.handler/start-server! 5555)
@grounded_sage: run lein -v
... i suspect either your lein or your java are old
lein should be > 2.0.0, and java should be 1.8.x
if that fixes it for you, add a note to the docs and PR :simple_smile:
@grounded_sage: @rafd Hey, I just tried to setup braid too and run into the same error. I have leiningen 2.6.1 and JDK 1.8.0_74 installed
Turns out, you have to run figwheel and lesscss first.
The error occurs cause the it misses some css and js files and crashes on it.
I added a PR for the minor stuff I found
@sveri: thanks!
Awesome. Had a feeling it may be that but thought it was just a human error.