74 lines
843 B
Plaintext
74 lines
843 B
Plaintext
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
/bin/
|
|
dealroom
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
coverage.html
|
|
|
|
# Dependency directories (remove the comment below to include it)
|
|
# vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Application data
|
|
data/
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Generated files
|
|
*_templ.go
|
|
templates/*_templ.go
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Log files
|
|
*.log
|
|
logs/
|
|
|
|
# Config files (may contain secrets)
|
|
.env
|
|
.env.local
|
|
config.yaml
|
|
config.json
|
|
|
|
# Backup files
|
|
backups/
|
|
*.bak
|
|
*.backup
|
|
|
|
# Production files
|
|
docker-compose.override.yml
|
|
.secrets/
|
|
|
|
# Test files
|
|
testdata/output/ |