Best practices in building and deploying Clojure applications: good tutorials?
A couple of quick hints, then some links: Don’t use lein uberjar during development; prefer lein jar. The difference is that lein uberjar puts all your dependencies in the generated jar (including Clojure itself), so that your single jar is an entirely self contained package with your app inside; lein jar only jars your own … Read more