✅ Nest.js 초기 프로젝트 설정 가이드

1. Nest CLI 설치

npm install -g @nestjs/cli

2. 프로젝트 생성

nest new 프로젝트이름

3. 개발 모드 실행

npm run start:dev

4. 주요 폴더 구조

src/
├── app.controller.ts
├── app.service.ts
├── app.module.ts
├── main.ts
test/
├── app.e2e-spec.ts