From 39d7d49e6c77a93d57f039462250f4d44e9315ac Mon Sep 17 00:00:00 2001 From: Micael Santana Date: Sun, 7 Dec 2025 08:09:27 -0300 Subject: [PATCH] chore: update gitignore to better organize data assets Refine gitignore rules for data directory to explicitly ignore all generated assets while keeping specific tracked files like background image and CSVs --- .gitignore | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 265ef32..44c00ec 100644 --- a/.gitignore +++ b/.gitignore @@ -5,9 +5,11 @@ node_modules/ build/ # Downloaded data files -data/* +# Ignore all generated/cached assets under data +data/** +# Keep only the local background image and optional CSVs tracked +!data/modelviewer-background.png !data/*.csv -!data/*.png # Configuration config.json