Skip to content

chore: readme 프로젝트 구조 및 프로세스 수정 #12

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

Merged
merged 1 commit into from
Jul 7, 2025
Merged
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
19 changes: 15 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,21 @@ Next.js로 구현된 MSA 아키텍처의 프론트엔드 프로젝트입니다.

```
devnogi-front/
├── src/ # 소스 코드
│ ├── app/ # Next.js App Router 구조
│ └── lib/ # 유틸리티 함수
└── public/ # 정적 파일
├── src/ # 소스 코드
│ ├── app/ # Next.js App Router 구조
│ ├── components/ # 공통 컴포넌트
│ │ ├── page/ # 각 페이지별 컴포넌트
│ │ └── ui/ # 쉐이든 ui 컴포넌트
│ ├── data/ # 데이터/목업
│ └── lib/ # 유틸리티 함수
└── public/ # 정적 파일
```

## 개발 환경 설정

0. 원본 저장소에서 프로젝트 포크
[원본 저장소 링크](https://github.com/devnogi/devnogi-react)

1. 저장소 클론
```bash
git clone [your-repository-url]
Expand Down Expand Up @@ -51,6 +58,8 @@ npm run dev

### 브랜치 작업 플로우

0. 작업 전 원본 저장소와 싱크 확인

1. 새로운 작업 시작
```bash
git switch main
Expand All @@ -68,6 +77,8 @@ git push origin 브랜치명
- 코드 리뷰 진행
- 승인 후 main 브랜치에 머지

3. 머지 완료 후 포크 저장소 최신화

### 커밋 메시지 컨벤션

- `feat`: 새로운 기능 추가
Expand Down