This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-04-13
Channels
- # babashka (45)
- # babashka-sci-dev (15)
- # beginners (72)
- # biff (4)
- # calva (3)
- # clj-on-windows (67)
- # clj-otel (1)
- # cljfx (7)
- # clojure (74)
- # clojure-austin (1)
- # clojure-dev (4)
- # clojure-europe (6)
- # clojure-gamedev (1)
- # clojure-germany (5)
- # clojure-losangeles (6)
- # clojure-nl (3)
- # clojure-uk (6)
- # clojured (2)
- # clojurescript (42)
- # core-typed (2)
- # cursive (4)
- # emacs (18)
- # events (1)
- # fulcro (13)
- # humbleui (8)
- # introduce-yourself (2)
- # kaocha (11)
- # leiningen (5)
- # lsp (16)
- # malli (8)
- # off-topic (69)
- # pathom (38)
- # pedestal (3)
- # reagent (17)
- # releases (3)
- # shadow-cljs (10)
- # spacemacs (6)
- # sql (1)
- # tools-deps (5)
- # xtdb (20)
Is there any reason why kaocha doesn't seem to have an option to https://github.com/lambdaisland/kaocha/blob/a505b88ede250135990934e3d1d3b3cf32fede88/src/kaocha/config.clj#L104-L116 from a resource?
I'm working on integrating https://github.com/imrekoszo/polylith-kaocha and the boundary where kaocha itself needs to be invoked has better access to resources than filesystem paths
are your resources inside jars or on the filesystem? If the latter is it possible to do the resolution before calling Kaocha?
> Is there any reason It would appear no one has needed this before, that's the reason.
Well, they could be in jars. Polylith assembles a classloader and so that's what I should primarily be working with when calling Kaocha, so in this case relying on resources feels safer to me.
I can assemble a config via an alternative way before calling kaocha but I'd like avail of the aero and default config support.
Here's a PR in any case: https://github.com/lambdaisland/kaocha/pull/286