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
feat: use double underscore to split config env var names
For example, the env var `TORRUST_TRACKER__HTTP_API__ACCESS_TOKENS__ADMIN` would be the config option:
```
[http_api.access_tokens]
admin = "MyAccessToken"
```
It uses `__` double underscore becuase dots are not allowed in Bash
names.
See: https://www.gnu.org/software/bash/manual/bash.html#Definitions
```
name
A word consisting solely of letters, numbers, and underscores, and beginning with a letter or underscore. Names are used as shell variable and function names. Also referred to as an identifier.
```
0 commit comments