hi basic question, how can I add dependencies to my project.clj and get it hot reloaded into running ring server?
I saw one API called alembic. I want to know if this is a common practice in the community
Hot reloading is possible, but you need to have the dependencies in place to do it, and generally speaking it’s more reliable to use a load balancer that can restart its servers one at a time and avoid downtime.
@weavejester I am looking for hot reloading of updates to dependencies during development on my laptop
@manas.marthi I’ve seen https://github.com/cemerick/pomegranate used for that purpose