35 lines
305 B
Plaintext
35 lines
305 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Test & coverage
|
|
*_test.go
|
|
coverage.out
|
|
coverage.dat
|
|
*.coverprofile
|
|
|
|
# Development artifacts
|
|
.dive-ci
|
|
Makefile
|
|
.env
|
|
.env.local
|
|
|
|
# Documentation (reduces image size)
|
|
*.md
|
|
docs/
|
|
tech/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Local state
|
|
scripts/
|
|
deploy/
|
|
test/
|
|
tests/ |