Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 49 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# Binaries
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary
# Test binary, built with `go test -c`
*.test

# Coverage output
# Output of the go coverage tool
*.out
coverage.html
coverage.txt

# Go workspace file
go.work
Expand All @@ -23,9 +24,54 @@ vendor/
/bin/
/dist/

# Dependency directories
/go.sum

# IDE / editor
.idea/
.vscode/
*.swp
*.swo
*~
*.sublime-*

# OS-specific files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Temporary files
*.tmp
*.temp
*.log
*.bak
*.orig

# Archive files
*.zip
*.tar
*.tar.gz
*.tgz
*.rar

# Security / Secrets
*.pem
*.key
*.crt
*.p12
.env
.env.*
secrets/
credentials/

# Documentation builds
/site/
/docs/_build/

# Debug
debug
__debug_bin*
Loading