# Git .git .gitignore # Documentation README.md doc/ # Build artifacts build/ *.exe *.exe~ *.dll *.so *.dylib # Test binary, built with `go test -c` *.test # Output of the go coverage tool *.out coverage.html # Dependency directories vendor/ # Go workspace file go.work # IDE .vscode/ .idea/ *.swp *.swo *~ # OS .DS_Store Thumbs.db # Logs *.log # Docker Dockerfile* docker-compose*.yml .dockerignore # Development files .env .env.local .env.development .env.test .env.production # Temporary files tmp/ temp/ # Node modules (if any) node_modules/ # Test files test/ *_test.go