48 lines
428 B
Plaintext
48 lines
428 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.env
|
|
|
|
# Credentials — NEVER commit these
|
|
*.json
|
|
credentials/
|
|
*.key
|
|
*.pem
|
|
service_account*.json
|
|
application_default_credentials.json
|
|
|
|
# GCP / ADK
|
|
.gcloud/
|
|
adk_sessions/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temp
|
|
/tmp/
|
|
*.log
|
|
.env.prefilled
|
|
|
|
# Terraform
|
|
.terraform/
|
|
tfplan.txt
|