Reason for skipping AOT?
This isn’t specific to noir but one scenario you might want to skip AOT for a given namespace is when deploying your code to a PaaS provider such as heroku. Heroku performs AOT compilation of your code by default so consider this snippet in your server.clj: (db/connect! (System/getenv “DB_URL”)) (defn start [port] (run-jetty app {:port … Read more