Extract dependencies and their configurations to some common project

Hi all!
I have a bunch of microservices written in elixir and deployed as otp releases in docker containers, and they share common configuration for logger, sentry configuration, prometheus metrics, etc.

I’m just curious about extracting common project dependencies and their configs to some_common_project_deps library and configure them by including it into project’s deps list. Is it possible to do it? Or only way to achieve the common configuration is by using umbrella setup?

1 Like

@spscream: Making library for only sharing configuration does not makes sense for me. I think that umbrella applications are designed to solve that and/or similar problems.