diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..efc821b --- /dev/null +++ b/.gitignore @@ -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 \ No newline at end of file