Thanks for that correction
isn't the alter-var-root non idiomatic for the reloaded workflow? I mean you componetize the whole thing and couldn't use atoms to update the whole system?
I'm referencing to this code
(def system nil)
(defn init []
(alter-var-root #'system
(constantly (app/example-system {:host "<http://dbhost.com|dbhost.com>" :port 123}))))
That's just for the repl- not how you use it in a program.
@seancorfield thanks