> ## Documentation Index
> Fetch the complete documentation index at: https://docs.daven.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# 레퍼런스 앱

> 시화 스튜디오 — 교육앱 참고 구현

**시화 스튜디오**는 교육앱 제작·배포·Playground 제출의 참고 구현입니다.

|        |                                                                        |
| ------ | ---------------------------------------------------------------------- |
| 예제 호스트 | [sihwa-project-teal.vercel.app](https://sihwa-project-teal.vercel.app) |
| 소스     | `dv_mcp/apps/sihwa_project`                                            |

## 참고할 부분

| 파일                           | 역할              |
| ---------------------------- | --------------- |
| `src/lib/daven.ts`           | 서버 경유 Daven 호출  |
| `src/app/page.tsx` (및 관련 UI) | 수업 플로우 예시       |
| `DEPLOY.md`                  | Vercel 배포·환경 변수 |

## 로컬로 돌려보기

```bash theme={null}
cd dv_mcp
cp .env.example .env   # DAVEN_API_KEY 등
npm install
npm run sihwa          # 또는 apps/sihwa_project 에서 npm run dev
```

배포 후 [Playground](https://daven.ai/playground)에 URL을 넣고 검증·제출하면 됩니다.

새 앱을 만들 때 UI는 바꿔도 됩니다. **서버에 키를 두고 Daven을 호출하는 패턴**만 맞추면 됩니다.

관련: [빠른 시작](/edu/quickstart)
