Files
personotes/.gitignore
Mathieu Aumont 44d805fbfe 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.
2025-11-11 16:07:29 +01:00

48 lines
624 B
Plaintext

# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Go build output (binaries only, not source directories)
/server
/project-notes
cmd/server/server
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool
*.out
# Go workspace file
go.work
# Dependency directories
vendor/
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Notes directory (if you want to keep notes private)
# Uncomment the following line to ignore notes:
# notes/
# Frontend build artifacts
node_modules/
static/dist/
frontend/node_modules/
# Logs
*.log
# Environment files
.env
.env.local