Files
uptop/CONTRIBUTING.md
T
2026-05-24 14:15:11 -04:00

488 B

Contributing

Development

go run cmd/goupkeep/main.go -demo  # starts with sample data
ssh -p 23234 localhost              # connect to TUI

Tests

go test ./...              # unit tests
go test -race ./...        # race detector
golangci-lint run ./...    # linting

Pull Requests

  • Branch from main, PR back to main
  • Conventional Commits for messages (feat:, fix:, chore:)
  • Tests must pass, linter must be clean
  • One logical change per PR