duct

Ahmed Hassan 2019-07-30T05:23:34.009200Z

What do :prep-tasks ["javac" "compile" ["run" ":duct/compiler"]] in project.clj file of duct-pedestal-reitit-master template?

Ahmed Hassan 2019-07-30T05:25:00.009900Z

How can we setup template like this with deps.edn and CLJ?

Ahmed Hassan 2019-07-30T05:29:30.010700Z

I am not able to understand key concepts behind Duct and Integrant.

2019-07-30T07:43:00.012700Z

IMO the key concept is that the declarative config is turned into running system.

πŸ‘ 1
2019-07-30T07:44:43.013800Z

Don't really know much about the deps.edn, but basically, you'll need to implement some kind of your own :prep-tasks

πŸ‘ 1
2019-07-30T12:44:27.015500Z

In deps.edn the equivalent would be a function that compiles Java code, then Clojure code, then runs -main with the argument :duct/compiler.

πŸ‘ 1
2019-07-30T12:45:10.016400Z

It’s there to allow keys that derive from :duct/compiler to compile static resources to be included in the final release.

πŸ‘ 1