Skip to content

Conversation

@LeeCh0129
Copy link
Contributor

@LeeCh0129 LeeCh0129 commented Aug 1, 2025

📌 변경 사항 개요

배포용 환경변수 추가

📝 상세 내용

배포용 환경변수 추가

🔗 관련 이슈

🖼️ 스크린샷(선택사항)

💡 참고 사항

Summary by CodeRabbit

  • Chores
    • 배포 서버의 환경 변수 구성을 업데이트했습니다. 기존의 NEXT_PUBLIC_TEAM_ID를 제거하고, NEXT_PUBLIC_KAKAO_SIGNIN_REDIRECT_URLNEXT_PUBLIC_KAKAO_SIGNUP_REDIRECT_URL 변수를 추가했습니다.

@LeeCh0129 LeeCh0129 self-assigned this Aug 1, 2025
@LeeCh0129 LeeCh0129 added the 💻 chore 사소한 수정(빌드,패키지매니저등) label Aug 1, 2025
@coderabbitai
Copy link

coderabbitai bot commented Aug 1, 2025

Walkthrough

배포 워크플로우 스크립트에서 .env 파일 생성 단계에서 NEXT_PUBLIC_TEAM_ID 환경변수가 제거되고, 대신 NEXT_PUBLIC_KAKAO_SIGNIN_REDIRECT_URLNEXT_PUBLIC_KAKAO_SIGNUP_REDIRECT_URL 환경변수가 추가되었습니다. 나머지 배포 로직은 변경되지 않았습니다.

Changes

Cohort / File(s) Change Summary
배포 환경변수 수정
.github/workflows/deploy.yml
.env 파일 작성 시 기존 NEXT_PUBLIC_TEAM_ID 제거, NEXT_PUBLIC_KAKAO_SIGNIN_REDIRECT_URLNEXT_PUBLIC_KAKAO_SIGNUP_REDIRECT_URL 추가

Sequence Diagram(s)

sequenceDiagram
    participant GitHub Actions
    participant Deploy Server

    GitHub Actions->>Deploy Server: SSH 접속 및 배포 스크립트 실행
    Deploy Server->>Deploy Server: .env 파일 작성 (새 환경변수 반영)
    Deploy Server->>Deploy Server: 컨테이너 중지, 이미지 pull, 컨테이너 재시작 등
    Deploy Server->>GitHub Actions: 배포 완료 및 상태 보고
Loading

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Assessment against linked issues

Objective Addressed Explanation
환경변수 추가 (#107)

Possibly related PRs

Suggested reviewers

  • BokyungCodes
  • minimo-9
  • evaain706

Poem

토끼가 깡총, 배포를 준비해요
새로운 환경변수 두 개를 챙기고
오래된 건 살짝 내려놓아요
깔끔한 .env, 카카오로 로그인도 척척!
배포 서버도 신나게 춤을 춰요 🐇✨

Note

⚡️ Unit Test Generation is now available in beta!

Learn more here, or try it out under "Finishing Touches" below.


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 2d1657a and 16045a9.

📒 Files selected for processing (1)
  • .github/workflows/deploy.yml (1 hunks)
🔇 Additional comments (1)
.github/workflows/deploy.yml (1)

108-120: echo … >> .env 방식은 시크릿을 노출하지 않습니다

  • echo "VAR=${{ secrets.SECRET }}" >> .env 명령은 STDOUT이 아닌 .env 파일로 리다이렉트되며, GitHub Actions 로그에는 시크릿이 마스킹되어 출력됩니다.
  • heredoc 방식 역시 시크립트에 삽입된 시크릿은 동일하게 마스킹되므로 보안상 차이가 없습니다.
  • rg -n "NEXT_PUBLIC_TEAM_ID" . 검색 결과, 해당 키는 코드베이스 어디에도 남아 있지 않습니다.

원본 제안은 불필요하니 무시해 주시면 됩니다.

Likely an incorrect or invalid review comment.

✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch chore/107

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.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai generate unit tests to generate unit tests for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@LeeCh0129 LeeCh0129 merged commit cd81902 into develop Aug 1, 2025
2 checks passed
@LeeCh0129 LeeCh0129 deleted the chore/107 branch August 1, 2025 09:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

💻 chore 사소한 수정(빌드,패키지매니저등)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[chore] 환경변수 추가

4 participants