Multiconfiguration is covered by the HOCON itself,...
# ktor
o
Multiconfiguration is covered by the HOCON itself, please check the docs: https://github.com/lightbend/config
c
how does hocon handle that? (having an
application.conf
and then a deployment specific
application-production.conf
?)
I mean i can do
ConfigFactory.load("myapp")
but then it will load only that file. how can i load multiple files that overwrite keys from each other?
Mix it with using environment variables
${ENV}
and you can have very flexible configs