Fix .gitignore to exclude user-specific files

- Remove tracked .idea/dataSources.xml (user-specific DB config)
- Remove tracked .idea/vcs.xml (user-specific VCS settings)
- Use whitelist approach for .idea/ directory
- Add patterns for temp/backup files (*.backup*, *.py, temp_*.json, etc.)
This commit is contained in:
2026-03-10 00:03:15 -06:00
parent 7db2e63b79
commit e6e44f70d8

15
.gitignore vendored
View File

@@ -15,6 +15,11 @@ target/
### IntelliJ IDEA ###
.idea/*
!.idea/runConfigurations/
!.idea/.gitignore
!.idea/compiler.xml
!.idea/encodings.xml
!.idea/jarRepositories.xml
!.idea/misc.xml
*.iws
*.iml
*.ipr
@@ -38,3 +43,13 @@ build/
### Project Specific ###
tmp/
uploads/
### Temp and backup files ###
*.backup
*.backup*
*.bak
*.tmp
*.py
temp_*.json
last_part.json
fix_*.py