From 5b91c62a53819035f02b4c30bb7f808e4a164941 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A8=8B=E5=B9=BF?= Date: Thu, 5 Jun 2025 18:01:28 +0800 Subject: [PATCH] Add .gitignore file --- .gitignore | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .gitignore 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