docs: text/template 참조 정리, README 한글화, config 예제 이동#34
Merged
Conversation
ppzxc
commented
Mar 22, 2026
ppzxc
left a comment
Owner
Author
There was a problem hiding this comment.
셀프 리뷰 완료 ✅
- 문서 내 Go
text/template잔존 참조 → CEL/Expr로 수정 확인 domain/template.go참조 제거 확인Template타입string→map[string]string반영 확인- README 한글화 정확, 기술 용어 보존
config.example.yamlrename 처리 (내용 변경 없음).gitignore프로젝트명webhook-relay→relaybox수정 확인
초기 설계의 Go text/template 참조가 문서에 남아 있었으나 실제 구현은 CEL/Expr 표현식 엔진을 사용한다. 문서 정합성을 맞추고 README를 한글로 재작성한다.
- config.example.yaml: internal/config/ → docs/ (접근성 개선) - .gitignore: webhook-relay → relaybox (리네이밍 반영)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
text/template잔존 참조를 CEL/Expr 표현식 기반으로 수정config.example.yaml을internal/config/에서docs/로 이동.gitignore의 구 프로젝트명(webhook-relay) →relaybox로 수정Motivation
프로젝트가 초기
text/template설계에서 CEL/Expr 표현식 엔진으로 전환되었으나, 문서에 이전 참조가 남아 있어 혼동을 유발함. 설정 예제 파일의 위치도internal/깊이 있어 접근성이 낮았음.Changes
asyncapi.yaml, CLAUDE.md, 설계/계획 문서에서text/template참조 제거domain/template.go참조 제거 (파일 미존재)config.example.yaml→docs/config.example.yaml이동.gitignore바이너리명 수정Test plan
CGO_ENABLED=1 go build -o relaybox ./cmd/server/)go test -race ./... -timeout 60s)grep -r "text/template" --include="*.md" --include="*.yaml"— 잔존 참조 없음