Files
dyn/.gitignore
Tanishq Dubey ad494fa623 Fix .gitignore - add cmd/server/main.go and use absolute paths for binaries
The pattern 'server' was incorrectly ignoring cmd/server/ directory.
Changed to '/server' to only match root-level compiled binary.

Also committing cmd/server/main.go which was previously ignored.
2026-02-02 21:53:43 -05:00

51 lines
471 B
Plaintext

# Binaries
*.exe
*.exe~
*.dll
*.so
*.dylib
/server
/dyn
# Test binary
*.test
# Output of the go coverage tool
*.out
# Database
dyn.db
*.db
*.db-journal
*.db-shm
*.db-wal
# Data directory
data/
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Environment
.env
.env.local
# Dependencies (keep go.sum)
vendor/
# Temporary files
*.tmp
*.temp
# Kubernetes secrets (never commit these!)
k8s/overlays/*/secrets.yaml
!k8s/overlays/*/secrets.example.yaml