# Ignore version control directories
.git
.gitignore

# Ignore Python cache and compiled files
__pycache__/
*.pyc
*.pyo
*.pyd

# Ignore virtual environments
.venv/
env/
venv/

# Ignore IDE/editor configuration files
.vscode/
.idea/
*.swp

# Ignore build artifacts
build/
dist/
*.egg-info

# Ignore temporary files
*.log
*.tmp
*.bak
*.swp
.DS_Store

# Ignore node_modules (if applicable)
node_modules/

# Ignore Docker-related files (optional)
.dockerignore
docker-compose.override.yml