This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-06-20
Channels
- # announcements (5)
- # asami (7)
- # babashka-sci-dev (36)
- # beginners (50)
- # calva (47)
- # cider (1)
- # clj-kondo (19)
- # clojure (33)
- # clojure-europe (25)
- # clojure-nl (2)
- # clojure-uk (4)
- # clojurescript (26)
- # conjure (2)
- # cursive (5)
- # datalog (6)
- # fulcro (5)
- # graalvm (12)
- # leiningen (1)
- # malli (30)
- # off-topic (5)
- # rdf (4)
- # ring (11)
- # shadow-cljs (55)
Is there a good way to bootstrap a new GraalVM Native Image CLI app? https://github.com/johanthoren/graal-cli-template, but there must be a better way - a lein template or similar?
There is a lein plugin for native image, also one for clj, but I prefer using the least wrapping as possible, for memory issues (don't run the build in a jvm) but also just because every graalvm project has its unique demands
I have one "template" here: https://github.com/borkdude/jayfu, maybe I could promote it to a proper deps-new clj template
Usually this just spare you from a few ceremonies. As an example my scoop projects were created with this "use template" feature. Exception is scoop-clojure
which predates my involvement with scoop.
but the true benefit were for me pre-setup of hooks and github actions which I needed only to enable afterwards.
@borkdude, thanks for sharing.