You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've discussed with @fsouza about that, maybe storing the provider directly on providers list will reduce the overall complexity of the code. We should remove the factory and create a Validate() to be used on init().
The text was updated successfully, but these errors were encountered:
An important side effect of this change is that we would no longer support configuration files, only environment variables, because packages all inits are called before main, and we read the path and parse the config file in main.
We currently use environment variables, and it is indeed an approach that I prefer, so I'm +1 for this change.
It's worth mentioning that we're breaking the Gizmo way of handling configuration, but that's actually a good thing.
I've discussed with @fsouza about that, maybe storing the provider directly on providers list will reduce the overall complexity of the code. We should remove the factory and create a
Validate()
to be used oninit()
.The text was updated successfully, but these errors were encountered: