-
Notifications
You must be signed in to change notification settings - Fork 11
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
Showing
5 changed files
with
121 additions
and
2 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: 워크북 이슈 생성 템플릿 | ||
about: 해당 이슈 생성 템플릿을 사용하여 워크북 이슈를 생성합니다. | ||
title: "Chapter00_워크북 제목" | ||
labels: "" | ||
assignees: qmean | ||
--- | ||
|
||
<!-- 이슈 제목 : Chpater01_서버란 무엇인가(소켓&멀티 프로세스) --> | ||
|
||
### 📚 워크북 | ||
|
||
> 워크북 주소를 입력해 주세요. | ||
### ✨ 이슈 내용 | ||
|
||
> 이슈 개요를 입력해주세요. | ||
### 📍 참고 사항 | ||
|
||
> 워크북 학습 시 참고 및 주의 사항을 입력해주세요. |
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,28 @@ | ||
<!-- | ||
제목은 `[닉네임] 챕터_[미션/키워드]_제목` 로 작성해 주세요. | ||
예시: [kyumkim] Chapter01_mission_서버란 무엇인가(소켓&멀티 프로세스) | ||
--> | ||
|
||
## ✅ 워크북 체크리스트 | ||
|
||
- [ ] 모든 핵심 키워드 정리를 마쳤나요? | ||
- [ ] 핵심 키워드에 대해 완벽히 이해하셨나요? | ||
- [ ] 이론 학습 이후 직접 실습을 해보는 시간을 가졌나요? | ||
- [ ] 미션을 수행하셨나요? | ||
- [ ] 미션을 기록하셨나요? | ||
|
||
## ✅ 컨벤션 체크리스트 | ||
|
||
- [ ] 디렉토리 구조 컨벤션을 잘 지켰나요? | ||
- [ ] pr 제목을 컨벤션에 맞게 작성하였나요? | ||
- [ ] pr에 해당되는 이슈를 연결하였나요?(중요) | ||
- [ ] 적절한 라벨을 설정하였나요? | ||
- [ ] 파트장에게 code review를 요청하기 위해 reviewer를 등록하였나요? | ||
- [ ] 닉네임/main 브랜치의 최신 상태를 반영하고 있는지 확인했나요?(매우 중요!) | ||
|
||
## 📌 주안점 | ||
|
||
<!-- | ||
(Optional) | ||
리뷰 시에 유심히 봐주었으면 하는 부분을 설명합니다. | ||
--> |
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 |
---|---|---|
@@ -1,2 +1,56 @@ | ||
# Spring | ||
Spring 파트 워크북 및 미션 제출 레포지터리입니다~ | ||
# :leaves: Spring_Boot | ||
|
||
INHA UMC Spring Boot 미션, 키워드 인증 레포지터리입니다! | ||
|
||
## 💻 Member | ||
|
||
## 📁 디렉토리 구조 | ||
|
||
```bash | ||
. | ||
├── README.md | ||
├── keyword | ||
│ └── README.md | ||
└── mission | ||
└── README.md | ||
``` | ||
|
||
### keyword 폴더 | ||
|
||
키워드와 주차마다 선택적으로 있는 실습 내용을 | ||
정리한 파일을 올리는 폴더입니다. | ||
|
||
### mission 폴더 | ||
|
||
미션을 진행하신 내용을 정리한 파일을 올리는 | ||
폴더입니다. | ||
|
||
## 🌳 branch 규칙 | ||
|
||
```bash | ||
├─main | ||
├─kyumkim/main | ||
... | ||
``` | ||
|
||
1. `닉네임/main 브랜치`가 기본 브랜치로 pr 보낼 때 root 브랜치(main 브랜치)가 아닌 닉네임/main 브랜치로 올립니다. | ||
2. 매주 워크북, 실습, 그리고 미션은 각자의 닉네임/main 브랜치를 base 브랜치로 삼아 fork한 레포지터리 에서 base branch에 pull request를 생성합니다. | ||
3. 파트장의 approve를 받으면, pr을 머지하고 이때, pr 제목은 | ||
`[n주차/닉네임] {키워드 or 미션} 제출합니다` 형식으로 작성합니다. | ||
|
||
## 🔖 커밋 컨벤션 | ||
|
||
예시 ) `mission: 0주차 미션 인증` | ||
| Message | 설명 | | ||
| :------: | :------------------------------------------------ | | ||
| mission | 미션 수행 | | ||
| practice | 실습 수행 | | ||
| keyword | 키워드 정리 | | ||
| workbook | 워크북 정리 | | ||
| fix | 버그 수정 | | ||
| docs | 문서 수정 | | ||
| comment | 주석 추가 및 변경 | | ||
| test | 테스트 코드 추가 | | ||
| rename | 파일 혹은 폴더명 수정 | | ||
| remove | 파일 혹은 폴더 삭제 | | ||
| chore | 기타 변경사항 | |
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,8 @@ | ||
## ⭐️키워드 제출 방법⭐️ | ||
|
||
> keyword 디렉토리 안에 chapter00 형식으로 디렉토리 생성 | ||
1. 로컬에서 chapter?? 디렉토리 안에 미션 인증 파일 작성 | ||
2. fork한 본인 레포에 커밋 후 push | ||
3. pull request 생성 후 이슈 및 리뷰어 연결 | ||
4. 파트장이 승인하면(메일이 올거에요) 직접 merge |
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,8 @@ | ||
## ⭐️미션 제출 방법⭐️ | ||
|
||
> mission 디렉토리 안에 chapter00 형식으로 디렉토리 생성 | ||
1. 로컬에서 chapter?? 디렉토리 안에 미션 인증 파일 작성 | ||
2. fork한 본인 레포에 커밋 후 push | ||
3. pull request 생성 후 이슈 및 리뷰어 연결 | ||
4. 파트장이 승인하면(메일이 올거에요) 직접 merge |