From 79cc92189231fecff08b4cc3c42ab9e62be9768c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=B4=8A=E1=B4=8F=E1=B4=87=20=E1=B4=84=CA=9C=E1=B4=87?= =?UTF-8?q?=C9=B4?= Date: Sun, 23 Nov 2025 20:59:52 -0500 Subject: [PATCH] conf: enable value mapping from env vars (#8057) --- internal/conf/conf.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/conf/conf.go b/internal/conf/conf.go index f7a6f8866..83e1ed2f6 100644 --- a/internal/conf/conf.go +++ b/internal/conf/conf.go @@ -59,6 +59,7 @@ func Init(customConf string) error { return errors.Wrap(err, `parse "app.ini"`) } File.NameMapper = ini.SnackCase + File.ValueMapper = os.ExpandEnv if customConf == "" { customConf = filepath.Join(CustomDir(), "conf", "app.ini")