chore: optimized .gitignore for Railiance infra repo
This commit is contained in:
parent
b26b873c29
commit
c16baa36af
1 changed files with 66 additions and 8 deletions
74
.gitignore
vendored
74
.gitignore
vendored
|
|
@ -1,17 +1,75 @@
|
||||||
# OS
|
# OS / Editor cruft
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*.bak
|
||||||
|
*.tmp
|
||||||
|
*~
|
||||||
|
|
||||||
# Python
|
# Python
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.pyc
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
*.pyd
|
||||||
|
*.egg-info/
|
||||||
|
.eggs/
|
||||||
|
.venv/
|
||||||
|
venv/
|
||||||
|
env/
|
||||||
|
|
||||||
# Ansible artifacts
|
# Node (in case UI helpers creep in)
|
||||||
|
node_modules/
|
||||||
|
npm-debug.log
|
||||||
|
yarn-debug.log
|
||||||
|
yarn-error.log
|
||||||
|
.pnpm-debug.log
|
||||||
|
|
||||||
|
# Ansible
|
||||||
*.retry
|
*.retry
|
||||||
|
# Local inventory (never commit host IPs/secrets)
|
||||||
|
inventory/
|
||||||
|
hosts
|
||||||
|
.secrets/
|
||||||
|
.vault_pass.txt
|
||||||
|
|
||||||
# Helm build
|
# Helm / Kubernetes
|
||||||
charts/*/charts/
|
charts/*.tgz
|
||||||
charts/*/tmp/
|
# Helm release cache
|
||||||
|
.helm/
|
||||||
|
# Kustomize build output
|
||||||
|
kustomize-build/
|
||||||
|
# Kubernetes local config
|
||||||
|
.kube/
|
||||||
|
*.kubeconfig
|
||||||
|
|
||||||
# Local secrets (do not commit)
|
# Terraform (if used later)
|
||||||
secrets/
|
.terraform/
|
||||||
*.enc
|
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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue