From de8563704a07e9ccb9913b940089dc56bb0b8f3f Mon Sep 17 00:00:00 2001 From: Gronod Date: Sat, 16 May 2026 15:08:44 +0100 Subject: [PATCH] security: ensure log files excluded recursively from git and Docker builds (issue #16) *.log only matched root-level logs; add **/*.log to cover server/server.log and any other subdirectory log files in both .gitignore and .dockerignore. --- .dockerignore | 1 + .gitignore | 1 + 2 files changed, 2 insertions(+) diff --git a/.dockerignore b/.dockerignore index e2c8501..7a09ebc 100644 --- a/.dockerignore +++ b/.dockerignore @@ -6,6 +6,7 @@ node_modules/ .gitignore .DS_Store *.log +**/*.log client/ dist/ build/ diff --git a/.gitignore b/.gitignore index fdd8c5a..606e68a 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ dist/ build/ .DS_Store *.log +**/*.log