76 lines
911 B
Plaintext
76 lines
911 B
Plaintext
# OS / Editor cruft
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
*.bak
|
|
*.tmp
|
|
*~
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
*.egg-info/
|
|
.eggs/
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Node (in case UI helpers creep in)
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-debug.log
|
|
yarn-error.log
|
|
.pnpm-debug.log
|
|
|
|
# Ansible
|
|
*.retry
|
|
# Local inventory (never commit host IPs/secrets)
|
|
ansible/hosts.ini
|
|
hosts
|
|
.secrets/
|
|
.vault_pass.txt
|
|
|
|
# Helm / Kubernetes
|
|
charts/*.tgz
|
|
# Helm release cache
|
|
.helm/
|
|
# Kustomize build output
|
|
kustomize-build/
|
|
# Kubernetes local config
|
|
.kube/
|
|
*.kubeconfig
|
|
|
|
# Terraform (if used later)
|
|
.terraform/
|
|
terraform.tfstate
|
|
terraform.tfstate.backup
|
|
*.tfvars
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Coverage / test artifacts
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|
|
.junit/
|
|
*.out
|
|
*.err
|
|
|
|
# Git + tooling
|
|
.gitattributes.lock
|
|
.editorconfig.lock
|
|
|
|
# Local Railiance config
|
|
# (token + credentials must *never* be committed)
|
|
.railiance_gitea.conf
|
|
|
|
# IDE configs
|
|
.vscode/
|
|
.idea/
|
|
*.iml
|