Conform config for umbrella project -

My project umbrella setup has:

  • web (rest endpoints, gets released and runs)
  • engine (task worker, gets released and runs)
  • config (confusingly-named shared component)

The common components need configuration. Configuration set through conform is seems to not be available for ‘config’ when the “web” project is released and run from release.

Any hints on how can I debug / trace this problem?

web.conf (generated through conform + conform_exrm) contains:

Provide documentation for config.foo here.

config.foo = xxxxx

apps/web/config/config.exs:
config :config,
foo: “xxxxx”

apps/web/config/web.schema.exs:
“config.foo”: [
commented: false,
datatype: :binary,
default: “xxxxx”,
doc: “Provide documentation for config.foo here.”,
hidden: false,
to: “config.foo”

thanks,

m