component

donaldball 2016-10-11T00:21:20.000058Z

Thanks for that correction

vinnyataide 2016-10-11T04:17:21.000068Z

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?

vinnyataide 2016-10-11T04:17:55.000069Z

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}))))

seancorfield 2016-10-11T04:51:07.000071Z

That's just for the repl- not how you use it in a program.

vinnyataide 2016-10-11T19:40:12.000072Z

@seancorfield thanks