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
As config is basically a tree of maps, we should be able to merge configurations at. multiple levels. For example common config in default.json should be merged with envy specific config in staging. Jason
As config is basically a tree of maps, we should be able to merge configurations at. multiple levels. For example common config in default.json should be merged with envy specific config in staging. Jason
Default.json:
{
db: {
driver: "MySQL"
}
}
Staging.json:
{
db: {
host: "staging.foo.com"
}
}
config.get("db") == {
host: "staging.foo.com",
driver: "MySQL"
}
For simplicity matching keys can be overwritten.
The text was updated successfully, but these errors were encountered: