James Reeves
James Reeves
I think this would be a good addition.
I can't think of anything in the code that would make `lein ring war` much slower than `lein ring jar`. This is something that will require further investigation.
Try setting the `:stacktraces?` option to false to prevent the wrap-stacktrace middleware from capturing the exception. I'm not certain if that will solve the problem, however, as the web server...
There's a [discussion on the Ring group](https://groups.google.com/forum/#!topic/ring-clojure/I_zHN3J-w0U) about this. In a nutshell, the latest proposed standard, RFC 7230, does allow the `Content-Length` header to be omitted when responding to `HEAD`,...
Yeah, I'm not certain either. Perhaps `"` on the end of the URL is ignored if the URL comes directly after a preceding `"`.
Thanks for the PR. Tools like clj-kondo are good for linting the codebase, but their recommendations shouldn't be applied blindly, as they can be opinionated or even incorrect. The `if`/`when`...
Nothing that automatically does this, but you could write your own index page and use the HTML transformation options to incorporate the upddated sidebar into the docs of the subdirectories.
You need to ensure that class is on your classpath when running Codox.
This is really a Boot question, but from a cursorary glance of the Boot README, it looks like you can specify directories to put on the classpath through the `:resource-paths`...
> One could argue that top-level in source files should only contain side effect free def, defn etc. function calls which don't do anything when loaded One could, and I...