# .gitignore for GCP CLI

# ========================================
# CRITICAL: NEVER COMMIT CREDENTIALS!
# ========================================
# GCP Credentials (NEVER commit these!)
*.json
!package.json
!package-lock.json
credentials/
keys/
*-key.json
*-credentials.json
service-account*.json

# Environment files with secrets
.env
.env.*
*.pem
*.key

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual Environment
venv/
ENV/
env/
.venv
bin/
lib/
lib64
include/
pyvenv.cfg
*.egg-info/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# GCP Credentials (NEVER commit these!)
*.json
!setup.json
credentials/
keys/

# Config files with secrets
*_config.yaml
*_config.yml
config.yaml
config.yml
!example_config.yaml

# Logs
*.log
logs/

# OS
.DS_Store
Thumbs.db

# GCP CLI specific
.gcp_cli/
history.txt

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

# Jupyter
.ipynb_checkpoints
