From ad1db88d0832ab34fb75df81f236ae5dfafe5787 Mon Sep 17 00:00:00 2001 From: Javier Marcos <1271349+javuto@users.noreply.github.com> Date: Sun, 22 Feb 2026 09:33:06 +0100 Subject: [PATCH] Small error in YAML config and ignoring md files --- .gitignore | 7 +++++++ pkg/config/types.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b4b489d3..4bee338a 100644 --- a/.gitignore +++ b/.gitignore @@ -76,3 +76,10 @@ tls.env # bruno tools/bruno/collection.bru + +# Untracked markdown files +*.md +!README.md +!CONTRIBUTING.md +!CHANGELOG.md +!SECURITY.md diff --git a/pkg/config/types.go b/pkg/config/types.go index db46618d..ad89bd23 100644 --- a/pkg/config/types.go +++ b/pkg/config/types.go @@ -202,7 +202,7 @@ type YAMLConfigurationCarver struct { type YAMLConfigurationAdmin struct { SessionKey string `yaml:"sessionKey"` StaticDir string `yaml:"staticDir"` - StaticOffline bool `yaml:"keyFile"` + StaticOffline bool `yaml:"staticOffline"` TemplatesDir string `yaml:"templatesDir"` BrandingImage string `yaml:"brandingImage"` BackgroundImage string `yaml:"backgroundImage"`