-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CI/CD] 배포 환경 세팅 및 개발 환경세팅 추가 #2
Conversation
- 서버 설정 파일을 추가하여 Nginx를 구성합니다.
- 배포 워크플로우를 업데이트하고 새로운 기능을 추가했습니다.
- .platform 폴더를 만들고 - .platform/nginx.config에 nginx 설정 파일을 추가 - vueapp.conf 파일을 생성하고 설정 내용을 작성 - nginx 서버 설정 및 경로 지정 - nginx 재시작 명령어 추가
- 파비콘 추가
- index.html의 제목을 '마켓나와'로 변경합니다.
- 새로운 서버 파일을 추가했습니다. - express 및 path를 사용하여 서버를 설정했습니다. - 포트 번호를 설정하여 서버를 실행했습니다. - dist 폴더의 정적 파일을 제공하도록 설정했습니다. - 모든 요청에 대해 index.html 파일을 제공하도록 설정했습니다. - 포트 번호를 표시하는 콘솔 메시지를 추가했습니다.
- vite.config.js 파일을 서버 및 빌드 설정을 위해 업데이트합니다. - 서버 설정과 빌드 설정을 변경했습니다. - 서버 포트를 5173으로 설정했습니다. - 빌드 결과물 디렉토리를 'dist'로 설정했습니다. - 환경 변수 VITE_APP_BACKEND_URL을 정의했습니다.
- PR 템플릿 수정 - 이슈 번호 연결 - PR 유형 명시
- 코드리뷰 워크플로우를 위한 YAML 파일 추가 - 코드리뷰 권한 설정 및 작업 유형 지정 - 오픈된, 재개된, 동기화된 풀 리퀘스트에 대한 이벤트 설정 - ChatGPT 코드리뷰 작업 설정 및 실행 환경 지정 - 코드 차이점 확인을 위한 ChatGPT 코드리뷰 실행 - GITHUB_TOKEN 및 OPENAI_API_KEY 환경 변수 설정 - 한국어 언어 및 코드리뷰 프롬프트 지정
- 작성된 PR 리뷴 및 댓글을 확인하여 고유 사용자 수를 체크합니다. - 리뷰어 및 댓글 작성자가 충분하지 않으면 머지를 방지합니다.
exit 1 | ||
fi | ||
env: | ||
ALL_USERS: ${{ env.ALL_USERS }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
주어진 코드는 PR 리뷰 및 댓글을 확인하여 충분한 리뷰어와 댓글 작성자가 있는지 검사하는 GitHub Actions workflow입니다. 코드에 혼동이나 불규칙은 보이지 않습니다. 다만 주의할 점은 curl
과 같은 외부 명령어를 사용할 때 인증 토큰이나 중요 정보가 노출되지 않도록 안전하게 관리해야 합니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다. 확인했습니다
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다.
📍 개요
| Resolves | #1 |
📍 PR 유형
어떤 변경 사항이 있나요?