yogthos / config

Library for managing environment variables in Clojure using EDN configuration files
161 stars 15 forks source link

Reloading question #6

Closed crinklywrappr closed 7 years ago

crinklywrappr commented 7 years ago

When working with config at the repl is there a recommended way to reload the env map?

yogthos commented 7 years ago

The library uses defonce to initialize the config, so there really isn't a good way to do reloading. I'm actually using cprop myself nowadays, and it allows reloading the config at runtime.

crinklywrappr commented 7 years ago

That's what it looked like. Thanks.