You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 17, 2020. It is now read-only.
Currently we deploy an Ahead of Time (aot) compiled java jar inside a docker container.
However, Clojure being a dynamic language allows the inspection and redefinition of code even after deployment. For that I guess we would have to include leiningen inside the container and expose the repl port.
Currently we deploy an Ahead of Time (aot) compiled java jar inside a docker container.
However, Clojure being a dynamic language allows the inspection and redefinition of code even after deployment. For that I guess we would have to include leiningen inside the container and expose the repl port.
Here is a good description about it: https://stackoverflow.com/questions/22422820/connecting-to-a-headless-nrepl-running-in-a-docker-container-from-another-contai
The benefit of this would be the ability to reproduce and debug bugs in the currently running system i.e. debug and fix on real time !
however this also makes it slower (i guess) since not so strong optimizations are performed and leiningen is also in the way.
The text was updated successfully, but these errors were encountered: