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
In some situations i'd like to be able to include an arbitrary number of files, for example if I want my application to know about N other environments (this number can vary) I might want to include environment-config-env1.conf, environment-config-env2.conf ... environment-config-env*.conf
Ideally each of these files would add an entry to an array or similar, so that after i've included them all I have one key envs with an object describing each env in
The text was updated successfully, but these errors were encountered:
for resources on the classpath I don’t think there’s a (non horrible) way to implement this because there’s no way to list resources by directory afaik.
for files something like include glob(“foo/*.conf”) could make sense.
In some situations i'd like to be able to include an arbitrary number of files, for example if I want my application to know about N other environments (this number can vary) I might want to include environment-config-env1.conf, environment-config-env2.conf ... environment-config-env*.conf
Ideally each of these files would add an entry to an array or similar, so that after i've included them all I have one key
envs
with an object describing each env inThe text was updated successfully, but these errors were encountered: