veylant/.gitignore
2026-02-23 13:35:04 +01:00

80 lines
657 B
Plaintext

# Go
bin/
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
coverage.out
coverage.html
# Vendor
vendor/
# Go workspace
go.work
go.work.sum
# Python
__pycache__/
*.py[cod]
*$py.class
*.pyc
.venv/
venv/
env/
dist/
*.egg-info/
.pytest_cache/
.mypy_cache/
htmlcov/
# Node / Frontend
node_modules/
.next/
out/
dist/
*.local
# Environment & secrets
.env
.env.*
!.env.example
*.pem
*.key
*.p12
*.pfx
secrets/
vault-tokens/
# Docker
.docker/
# Terraform
.terraform/
*.tfstate
*.tfstate.*
*.tfplan
.terraform.lock.hcl
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
# Generated proto stubs
gen/
services/pii/gen/
# Logs
*.log
logs/
# Coverage reports
coverage/