Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 34 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,37 @@
/backup
dump-*
/inc/db.php
/src
/src

# Normalized Data Output Folders
# These folders contain generated output from normalization tools
# and should not be committed to version control
normalized_data/
**/normalized_data/
normalize_db/*/normalized_data/

# Database Files (generated)
*.db
*.sqlite
*.sqlite3

# CSV Output Files (from normalization tools)
# Comment the line below if you want to commit CSV files
# *.csv

# Reports and Documentation (generated)
**/normalization_report.txt
**/summary_report.txt

# Python Cache
__pycache__/
*.py[cod]
*$py.class

# Temporary Files
*.tmp
*.temp
*~

# Log Files
*.log
Loading