elixir-toniq / vapor

Runtime configuration system for Elixir

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Normalize all configuration keys into paths

keathley opened this issue · comments

We don't handle nested values well. We should convert nested values into "paths" similar to what get_in uses. For JSON and similar systems something like this:

{
  foo: {
    bar: {
      baz: 123
    }
  }
}

Would be accessed like: ["foo", "bar", "baz"].

Environment variables should be converted by their underscores. So if we have something like APP_DB_PORT we would access it like ["db", "port"].