Add .gitignore file
This commit is contained in:
parent
b28a08ce62
commit
5b91c62a53
|
@ -0,0 +1,57 @@
|
||||||
|
# Binaries for programs and plugins
|
||||||
|
*.exe
|
||||||
|
*.dll
|
||||||
|
*.so
|
||||||
|
*.dylib
|
||||||
|
|
||||||
|
# Test binary, build with `go test -c`
|
||||||
|
*.test
|
||||||
|
|
||||||
|
# Output of the go coverage tool, https://golang.org/cmd/cover/
|
||||||
|
*.out
|
||||||
|
|
||||||
|
# Dependency directories
|
||||||
|
vendor/
|
||||||
|
|
||||||
|
# Go workspace file
|
||||||
|
go.work
|
||||||
|
|
||||||
|
# IDE specific files
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*.swn
|
||||||
|
*.bak
|
||||||
|
*.tmp
|
||||||
|
*.log
|
||||||
|
*.pid
|
||||||
|
|
||||||
|
# Directories to ignore
|
||||||
|
bin/
|
||||||
|
pkg/
|
||||||
|
tmp/
|
||||||
|
log/
|
||||||
|
|
||||||
|
# Docker files
|
||||||
|
docker-compose.yml
|
||||||
|
.env
|
||||||
|
|
||||||
|
# Editor backup files
|
||||||
|
*~
|
||||||
|
|
||||||
|
# Build artifacts
|
||||||
|
*.a
|
||||||
|
|
||||||
|
# Go module cache
|
||||||
|
$GOPATH/pkg/mod/cache/
|
||||||
|
|
||||||
|
# Development environment files
|
||||||
|
.env
|
||||||
|
.local
|
||||||
|
.env.local
|
||||||
|
|
||||||
|
# VSCode files
|
||||||
|
.vscode/
|
||||||
|
*.code-workspace
|
||||||
|
|
||||||
|
# macOS specific files
|
||||||
|
.DS_Store
|
Loading…
Reference in New Issue