Quite new to this and I'm using the clj tools, not lein, to do the building etc.. I'm able to produce the dev and a production build. Does anyone have any hints/tips for packaging production? I tested it working by copying my "resources/public/index.html" and "target/public/*" to one directory and I'm able to serve up the content. Is there something that would do that (yes, I could write the script to do this, but I'm sure this is a solved problem so don't want to re-invent the wheel). Thank you!
Using Leiningen or something else?
clojure tools
clj/clojure and deps.edn
ignore me
easssssily fixed
production.cljs.edn
{:main foo.core
:output-to "resources/public/main.js"
:optimizations :advanced}
then just tar up the public directory
all wunderbar!
:bananadance: