security: ensure log files excluded recursively from git and Docker builds (issue #16)
All checks were successful
Build and Push Docker Image / build (push) Successful in 33s

*.log only matched root-level logs; add **/*.log to cover server/server.log
and any other subdirectory log files in both .gitignore and .dockerignore.
This commit is contained in:
2026-05-16 15:08:44 +01:00
parent 83049786eb
commit de8563704a
2 changed files with 2 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ node_modules/
.gitignore
.DS_Store
*.log
**/*.log
client/
dist/
build/

1
.gitignore vendored
View File

@@ -4,3 +4,4 @@ dist/
build/
.DS_Store
*.log
**/*.log