fix: Correct .gitignore to track cmd/server/main.go

The pattern 'server' was too broad and ignored the cmd/server/ directory.
Changed to '/server' to only ignore the binary at root level.
This fixes the missing main.go file in the repository.
This commit is contained in:
2025-11-11 16:07:29 +01:00
parent 6face7a02f
commit 44d805fbfe
2 changed files with 126 additions and 3 deletions

6
.gitignore vendored
View File

@ -5,9 +5,9 @@
*.so
*.dylib
# Go build output
server
project-notes
# Go build output (binaries only, not source directories)
/server
/project-notes
cmd/server/server
# Test binary, built with `go test -c`