2026-09-13 14:13:18 +09:00
|
|
|
# Git
|
2026-09-05 14:21:54 -07:00
|
|
|
.git
|
2026-08-23 00:01:30 -07:00
|
|
|
.gitignore
|
2026-09-13 14:13:18 +09:00
|
|
|
.gitattributes
|
|
|
|
|
|
|
|
|
|
# CI/CD
|
|
|
|
|
.github
|
|
|
|
|
.gitea
|
|
|
|
|
.gitlab-ci.yml
|
|
|
|
|
|
|
|
|
|
# Kubernetes
|
|
|
|
|
k8s/
|
|
|
|
|
helm/
|
|
|
|
|
|
|
|
|
|
# Documentation
|
2026-08-23 00:01:30 -07:00
|
|
|
*.md
|
2026-09-13 14:13:18 +09:00
|
|
|
docs/
|
|
|
|
|
|
|
|
|
|
# IDE
|
|
|
|
|
.vscode
|
|
|
|
|
.idea
|
|
|
|
|
*.swp
|
|
|
|
|
*.swo
|
|
|
|
|
*~
|
|
|
|
|
|
|
|
|
|
# OS
|
2026-09-05 14:21:54 -07:00
|
|
|
.DS_Store
|
2026-09-13 14:13:18 +09:00
|
|
|
Thumbs.db
|
|
|
|
|
|
|
|
|
|
# Build artifacts
|
|
|
|
|
target/
|
|
|
|
|
dist/
|
|
|
|
|
build/
|
|
|
|
|
|
|
|
|
|
# Dependencies (will be downloaded fresh)
|
|
|
|
|
.cargo/
|
|
|
|
|
Cargo.lock.bak
|
|
|
|
|
|
|
|
|
|
# Testing
|
|
|
|
|
.coverage
|
|
|
|
|
coverage/
|
|
|
|
|
|
|
|
|
|
# Secrets
|
|
|
|
|
.env
|
|
|
|
|
.env.local
|
|
|
|
|
.env.*.local
|
|
|
|
|
|
|
|
|
|
# Archives
|
|
|
|
|
*.tar
|
|
|
|
|
*.tar.gz
|
|
|
|
|
*.zip
|
|
|
|
|
|
|
|
|
|
# Node (if any)
|
|
|
|
|
node_modules/
|
|
|
|
|
*.log
|