-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6eb838f
commit f5dbb68
Showing
3 changed files
with
118 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
name: Custom issue template | ||
about: 새로운 기능 구현 시 사용 | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## 🚀 Description | ||
|
||
- | ||
|
||
## ✅ TODO | ||
|
||
- [ ] 체크리스트 | ||
|
||
|
||
## 📍etc | ||
|
||
> 참고 자료, 부연 설명 등 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
## 🚀 About | ||
|
||
> PR type (해당되는 것만 남기고 지워주세요) | ||
- feat : 새로운 기능 추가 | ||
- fix : 코드 버그 수정 | ||
- style : 코드 스타일 또는 포맷팅 변경 (가독성) | ||
- refactor : 코드 구조 변경 (기능 변화 없음) | ||
- docs : 문서화 작업 | ||
- test : 테스트 코드 작성 | ||
- build : 빌드 시스템, 배포 시스템, 의존성 관리 | ||
- chore : 일상적인 유지보수, 환경 설정 변경, 패키지 업데이트 | ||
|
||
> feat #관련이슈번호 | ||
## ✅ Key Changes | ||
|
||
- 주요 변경 사항 1 | ||
- 주요 변경 사항 2 | ||
- 주요 변경 사항 3 | ||
|
||
## 📍 Note | ||
|
||
> 주의 사항 또는 추가 설명 | ||
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# Pocket4Cut-BE1 | ||
|
||
### 🔍 브랜치 전략 | ||
|
||
- main : 언제든 배포가 가능한 상태이다. | ||
- develop : 다음 버전 기능이 담긴 코드로, 기능을 운영환경에 업데이트 할 때 main으로 merge한다. | ||
- feat/#n : 새로운 기능을 개발하기 위한 브랜치로, develop 브랜치에서 생성하고, 기능 개발이 완료되면 develop으로 merge한다. | ||
|
||
<br> | ||
|
||
### 🤙 commit 컨벤션 | ||
[commit type]을 제외한 모든 커밋 내용에 한글 허용 | ||
``` | ||
[commit type]: [commit message] | ||
``` | ||
|
||
- commit type | ||
|
||
| 구분자 | 작업 유형 | 예 | | ||
| --- | --- | --- | | ||
| feat | 새 기능 구현 | feat: 예치금 대량 충전 검색 기능 추가 | | ||
| fix | 버그 수정 | fix: 상점 목록의 에러처리 예외케이스 대응 | | ||
| docs | 문서(또는 주석) 관련 작업 | docs: 데코레이터 옵션에 대한 문서 추가 | | ||
| refactor | 리팩터링 | refactor: createStore의 함수를 작은 함수로 분리 | | ||
| test | 테스트 관련 작업 | test: 상점 생성 테스트 추가 | | ||
| chore | 기타 작업 | chore: 프로덕션 빌드시 소스맵 생성하도록 변경 | | ||
|
||
- commit message | ||
|
||
이번 커밋에서 작업한 내용을 간결하게 설명합니다. | ||
|
||
<br> | ||
|
||
### 💬 PR 규칙 | ||
|
||
**PR템플릿을 통해..** | ||
- 리뷰어가 쉽게 코드를 이해하고, 시간을 절약할 수 있다. | ||
- PR 요청 개발자 또한 PR템플릿을 작성하며 코드를 한 번 더 확인할 수 있다. | ||
|
||
|
||
**PR 형식** | ||
|
||
- 제목 | ||
- PR 목적을 한문장으로 요약 | ||
|
||
- 내용 | ||
``` | ||
## 🚀 About | ||
> PR type (해당되는 것만 남기고 지워주세요) | ||
- feat : 새로운 기능 추가 | ||
- fix : 코드 버그 수정 | ||
- style : 코드 스타일 또는 포맷팅 변경 (가독성) | ||
- refactor : 코드 구조 변경 (기능 변화 없음) | ||
- docs : 문서화 작업 | ||
- test : 테스트 코드 작성 | ||
- build : 빌드 시스템, 배포 시스템, 의존성 관리 | ||
- chore : 일상적인 유지보수, 환경 설정 변경, 패키지 업데이트 | ||
> feat #관련이슈번호 | ||
## ✅ Key Changes | ||
- 주요 변경 사항 1 | ||
- 주요 변경 사항 2 | ||
- 주요 변경 사항 3 | ||
## 📍 Note | ||
> 주의 사항 또는 추가 설명 | ||
``` |