Refine gitignore rules for data directory to explicitly ignore all generated assets while keeping specific tracked files like background image and CSVs
22 lines
326 B
Text
22 lines
326 B
Text
# Dependency directories
|
|
node_modules/
|
|
|
|
# Build directory
|
|
build/
|
|
|
|
# Downloaded data files
|
|
# Ignore all generated/cached assets under data
|
|
data/**
|
|
# Keep only the local background image and optional CSVs tracked
|
|
!data/modelviewer-background.png
|
|
!data/*.csv
|
|
|
|
# Configuration
|
|
config.json
|
|
.env
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# IDEs
|
|
.vscode/
|