Skip to content
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: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,21 @@ pnpm install

### 4. 환경변수 설정

```
기본 동작 실행을 위한 환경변수 설정

```bash
// .env.local
# API 요청 주소
NEXT_PUBLIC_API_BASE_URL=https://example.com/api/v1
# MSW 설정
NEXT_PUBLIC_MSW_ENABLED=true // Or false
```

playwright 테스트를 위한 환경변수 설정

```bash
// .env.test
NEXT_PUBLIC_MSW_ENABLED=true
```

## 스크립트
Expand All @@ -87,6 +99,9 @@ pnpm test
# 테스트 커버리지
pnpm test:coverage

# Playwright Test
pnpm test:playwright

# Storybook 실행
pnpm storybook

Expand Down Expand Up @@ -162,7 +177,7 @@ my-app
│ │ │ └─ 🔷 index.ts # useAuthStore
│ │ ├─ 📁 use-modal-store
│ │ │ └─ 🔷 index.ts # useModalStore
│ │ └─ 📁 use-user-store
│ │ └─ 📁 use-user-store
│ │ └─ 🔷 index.ts # useUserStore
│ │
│ ├─ 📁 lib # 유틸리티 & 설정
Expand Down