Fork me on GitHub
#ring
<
2016-11-15
>
seancorfield01:11:36

I had never heard of it. Bing indicates it's a modular jee engine for microservices. Not sure what it would take to run Clojure on it.

seancorfield01:11:27

Sounds like you'd probably need war deployment tho for Wildfly? I'd expect it to be like a modular JBoss.

olegakbarov16:11:37

how can i serve index.html on every request other than /js/ and /css/ paths?

(defroutes routes
  (context "/static" []
    (route/resources "/css" {:root "css"})
    (route/resources "/js" {:root "js"}))
  (ANY "*" []
    (route/resources "index.html"))) 
doesn’t work