- Add scripts/build.sh to compile binaries into bin/ directory - Move all zerolog setup logic from cmd/server/main.go to pkg/config - Add log level configuration support (trace, debug, info, warn, error, fatal, panic) - Simplify cmd/server/main.go from 57 to 27 lines (53% reduction) - Update .gitignore to use bin/ directory instead of individual files - Document build process and bin directory in AGENTS.md - Maintain backward compatibility with all existing functionality
23 lines
216 B
Plaintext
23 lines
216 B
Plaintext
# Binaries
|
|
*.exe
|
|
*.test
|
|
*.out
|
|
bin/
|
|
|
|
# Dependency directories
|
|
vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# IDE specific files
|
|
.idea/
|
|
.vscode/
|
|
|
|
# macOS specific files
|
|
.DS_Store
|
|
|
|
# Server runtime files
|
|
server.log
|
|
server.pid
|