Skip to content
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

[Feat & Docs] 과학 분석 기능 추가 및 PR 템플릿 적용 #22

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
### PR 타입
- [ ] 새로운 기능 추가
- [ ] 버그 수정
- [ ] 테스트 추가, 테스트 리팩토링
- [ ] 파일/폴더 수정/삭제
- [ ] CI/CD 워크플로우 업데이트
- [ ] 영향 없는 변경사항
- [ ] 코드 리팩토링
- [ ] 주석 추가/수정
- [ ] 문서 수정
<br>

### 반영 브랜치
dev ➡️ main
<br>

### 작업 사항
#### 📝`작업 내용`
작업내용 상세 설명
#### 📝`작업 내용`
작업내용 상세 설명
<br>

### 테스트 방법
추가된 기능은 아래 방식으로 자유롭게 요청&응답 테스트가 가능합니다.
- Dev/Prod 서버 Postman
- Dev/Prod 서버 Swagger UI
- 깃허브 액션은 실행하지 말고, 로그를 확인합니다.

### 테스트 결과
테스트 결과 작성
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ async def insert_curriculum_embeddings():

# S3 내 커리큘럼 데이터 로드
texts = []
prefix = 'curriculum/math2015/' # 경로
prefix = 'curriculum/science2015/' # 경로
try:
# 버킷에서 파일 목록 가져오기
s3_curriculum_response = s3_client.list_objects_v2(Bucket=BUCKET_NAME, Prefix=prefix)
Expand Down
Loading