chore: add .gitignore for Go project

Exclude build artifacts, binaries, IDE files, and temporary files
from version control.
This commit is contained in:
OpenCode Test
2025-12-24 13:03:34 -08:00
parent 9c2a0a3b4d
commit 4485718885

39
.gitignore vendored
View File

@@ -1,6 +1,43 @@
# Node.js
node_modules/ node_modules/
.next/ .next/
dist/ dist/
.DS_Store
.env .env
.env.* .env.*
# Binaries
bin/
controltower
# Build artifacts
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary
*.test
# Output of the go coverage tool
*.out
# Go workspace file
go.work
# Build cache
.cache/
# IDE files
.idea/
.vscode/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Temporary files
CHANGES_SUMMARY.sh