Resolve merge conflict in .gitignore

Combined Bitbucket template with Python-specific patterns for comprehensive
file exclusion coverage.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
DJP 2025-09-09 15:27:59 -04:00
commit dd8e0d07f7

53
.gitignore vendored
View file

@ -1,3 +1,6 @@
# Meta File Server Query Application - Git Ignore File
# Combined from Bitbucket template and Python-specific patterns
# Python # Python
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
@ -29,6 +32,15 @@ venv/
env/ env/
ENV/ ENV/
# Flask
instance/
.webassets-cache
# Environment variables
.env
.env.local
.env.production
# IDE # IDE
.vscode/ .vscode/
.idea/ .idea/
@ -36,7 +48,7 @@ ENV/
*.swo *.swo
*~ *~
# OS # OS Files
.DS_Store .DS_Store
.DS_Store? .DS_Store?
._* ._*
@ -48,15 +60,34 @@ Thumbs.db
# Logs # Logs
*.log *.log
# Flask
instance/
.webassets-cache
# Environment variables
.env
.env.local
.env.production
# Temporary files # Temporary files
*.tmp *.tmp
*.temp *.temp
# Node artifact files (if applicable)
node_modules/
# Compiled Java class files
*.class
# Package files
*.jar
# Maven
target/
# Unit test reports
TEST*.xml
# Applications
*.app
*.exe
*.war
# Large media files
*.mp4
*.tiff
*.avi
*.flv
*.mov
*.wmv