62 lines
652 B
Plaintext
62 lines
652 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
|
|
infrastructure/terraform/tfplan
|
|
**/tfplan
|
|
!infrastructure/terraform/customers/**/*.tfvars
|
|
|
|
# Local databases
|
|
emma/data/morphic.db
|
|
|
|
|
|
tyr/certs/ca_password.txt
|
|
|
|
# Ignored virtual environments
|
|
.venv-flake8/
|
|
opax-mcp/tmp_venv/
|
|
|