yada

agigao 2019-03-22T09:57:08.044700Z

created a new app in examples dir through ./bin/app name --cljs and when I start clj&cljs repl in Emacs it fails with the following error: error in process sentinel: Could not start nREPL server: Error building classpath. Manifest type not detected when finding deps for juxt.edge/app.logging in coordinate #:local{:root "../edge.app.logging"}

malcolmsparks 2019-03-22T10:07:40.046900Z

@chokheli an upgrade of clj fixes that issue I believe because Edge is now exploiting a very recent big fix.

1👍
agigao 2019-03-22T10:16:33.047600Z

Thanks, I’ll check it.

agigao 2019-03-22T10:18:15.048100Z

yeah, upgrading clojure to 442 solved the issue, thanks!

dominicm 2019-03-22T10:18:25.048400Z

Great! Feel free to @ me if you have further issues 🙂

malcolmsparks 2019-03-22T10:20:13.049700Z

I meant to say bug fix, of course 😉

agigao 2019-03-22T10:25:18.050Z

big-bug fix))

agigao 2019-03-22T10:29:06.050600Z

new dir structure looks quite clean.

dominicm 2019-03-22T10:29:38.051Z

I've been waiting for the bug fix so I could clean it up

2019-03-22T22:00:43.053100Z

hi, I am trying to get CSRF protection running by adding csrf token into my html file. I have added <meta name="csrf-token" content="{{csrf-token}}"> into index.html in resources and I want to insert the token using Selmer. How should I generate the token using yada? Should I just use the standard ring handler for it, as described in https://github.com/ring-clojure/ring-anti-forgery?