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
This commit is contained in:
Micael Santana 2025-12-07 08:09:27 -03:00
parent 87151da182
commit 39d7d49e6c

6
.gitignore vendored
View file

@ -5,9 +5,11 @@ node_modules/
build/ build/
# Downloaded data files # 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/*.csv
!data/*.png
# Configuration # Configuration
config.json config.json