Skip to content

Commit ff469ab

Browse files
committed
modify : 현재 파일 구조에 맞춰 readme 최신신화
1 parent 6aa9de3 commit ff469ab

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
```bash
1212
pnpm install
13-
NODE_ENV=development pnpm install # devDpe 설치 위해
13+
NODE_ENV=development pnpm install # devDependencies 설치 위해
1414

1515
# 만약 pnpm 이 없다면
1616
brew install pnpm
@@ -36,6 +36,9 @@ pnpm dev # 개발 서버 실행
3636
pnpm test # 테스트 실행
3737
pnpm lint # 린트 검사
3838
pnpm lint:fix # 린트 자동 수정
39+
40+
pnpm build # 프로젝트 빌드
41+
pnpm start # 빌드된 프로젝트 시작
3942
```
4043

4144
## Project Structure
@@ -44,9 +47,15 @@ pnpm lint:fix # 린트 자동 수정
4447
├── src/
4548
├── __test__/ # 테스트 파일
4649
├── configs/ # 설정 파일 (DB 등)
50+
├── constants/ # 상수 데이터 파일
4751
├── controllers/ # API 컨트롤러
48-
├── models/ # 데이터 모델
52+
├── exception/ # 커스텀 에러 파일
53+
├── middlewares/ # 각종 미들웨어 (인증, 에러, 데이터 검증 등)
54+
├── modules/ # 모듈 파일 (슬랙 등)
4955
├── repositories/ # 데이터 액세스 레이어
5056
├── routers/ # API 라우트 정의
51-
└── services/ # 비즈니스 로직
57+
├── services/ # 비즈니스 로직
58+
├┬── types/ # Enum, DTO 등 데이터 타입 정의
59+
│└── models/ # 데이터 모델
60+
└── utils/ # 편의성 함수 정의
5261
```

0 commit comments

Comments
 (0)