Add .gitignore to exclude PDFs, Excel files, and test data

This commit is contained in:
rpriven 2025-11-04 00:34:50 -07:00
parent 9d1aa187ce
commit fb6d22caee

19
.gitignore vendored Normal file
View file

@ -0,0 +1,19 @@
# Exclude everything by default
*
# Allow specific files
!.gitignore
!README.md
!*.py
!requirements.txt
!LICENSE
# Explicitly exclude sensitive/output files (redundant but clear)
*.pdf
*.xlsx
*.xls
*.csv
*.json
__pycache__/
*.pyc
.DS_Store