feat: 백엔드 API 연동 프론트엔드 및 오류 복구 개선 - #176
Merged
Merged
Conversation
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (2)
📒 Files selected for processing (36)
📝 WalkthroughWalkthroughDocGrid 프런트엔드를 인증 기반 애플리케이션으로 교체했습니다. 백엔드에는 문서 조회 범위 조정, RAG fallback 응답, Ollama 제한 시간 설정을 적용했습니다. Next.js 백엔드 프록시와 문서·컬렉션·권한·관리자 기능을 추가했습니다. Changes백엔드 조회 및 RAG 처리
DocGrid 프런트엔드 애플리케이션
Estimated code review effort: 5 (Critical) | ~120 minutes Sequence Diagram(s)sequenceDiagram
participant User
participant AuthProvider
participant DocGridApp
participant apiRequest
participant BackendProxy
User->>DocGridApp: 경로 접근
DocGridApp->>AuthProvider: 세션 상태 확인
AuthProvider->>apiRequest: /auth/me 요청
apiRequest->>BackendProxy: 인증 API 요청
BackendProxy-->>apiRequest: 사용자 응답
apiRequest-->>AuthProvider: 인증 사용자 반환
AuthProvider-->>DocGridApp: 인증 상태 제공
DocGridApp-->>User: 보호된 화면 또는 인증 화면 렌더링
Possibly related PRs
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Gimini-3
marked this pull request as ready for review
August 13, 2026 15:10
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.
변경 내용
/api/backend/*서버 프록시를 통해 요청하도록 구성했습니다.원인
검증
cd frontend && npm testcd frontend && npm run lintcd backend && env DB_PORT=5432 DB_SSLMODE=disable JWT_SECRET=docgrid-local-full-suite-secret-key-2026 ./gradlew test배포 참고
BACKEND_API_URL을 사용합니다. 로컬 기본값은http://localhost:8080입니다.Summary by CodeRabbit
새로운 기능
개선 사항
문서