Fork me on GitHub
#component
<
2016-10-11
>
donaldball00:10:20

Thanks for that correction

vinnyataide04:10:21

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?

vinnyataide04:10:55

I'm referencing to this code

(def system nil)

(defn init []
  (alter-var-root #'system
    (constantly (app/example-system {:host "" :port 123}))))

seancorfield04:10:07

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