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
I am trying to figure out how to achieve the following environment variable names:
APP_NETWORK_HOST for the host field
APP_NETWORK_PORT for the port field
What I find in the project examples is flattening into APP_HOST and APP_PORT, which I explicitly do not want (my intention is to get my struct layers as "namespaces" in the environment variables).
Along those lines, I'd also want a TOML schema resulting out of this to be
[network]
host = "127.0.0.1"port = 4711
Any hints are much appreciated!
The text was updated successfully, but these errors were encountered:
Assuming a (simplified) structure like:
I am trying to figure out how to achieve the following environment variable names:
APP_NETWORK_HOST
for the host fieldAPP_NETWORK_PORT
for the port fieldWhat I find in the project examples is flattening into
APP_HOST
andAPP_PORT
, which I explicitly do not want (my intention is to get my struct layers as "namespaces" in the environment variables).Along those lines, I'd also want a TOML schema resulting out of this to be
Any hints are much appreciated!
The text was updated successfully, but these errors were encountered: