braid-chat

https://github.com/braidchat/meta/wiki
grounded_sage 2016-03-22T13:26:08.000032Z

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

grounded_sage 2016-03-22T13:29:20.000034Z

Actually happening straight after I start the server now (chat.server.handler/start-server! 5555)

rafd 2016-03-22T15:32:09.000035Z

@grounded_sage: run lein -v ... i suspect either your lein or your java are old

rafd 2016-03-22T15:32:39.000036Z

lein should be > 2.0.0, and java should be 1.8.x

rafd 2016-03-22T15:32:58.000037Z

if that fixes it for you, add a note to the docs and PR :simple_smile:

sveri 2016-03-22T17:11:44.000038Z

@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

sveri 2016-03-22T18:18:41.000039Z

Turns out, you have to run figwheel and lesscss first.

sveri 2016-03-22T18:19:40.000040Z

The error occurs cause the it misses some css and js files and crashes on it.

sveri 2016-03-22T18:25:51.000041Z

I added a PR for the minor stuff I found

rafd 2016-03-22T18:32:49.000042Z

@sveri: thanks!

grounded_sage 2016-03-22T23:53:04.000043Z

Awesome. Had a feeling it may be that but thought it was just a human error.