|
1 | | -This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app). |
| 1 | +# LinkyBoard Web |
2 | 2 |
|
3 | | -## Getting Started |
| 3 | +Next.js 기반 웹 플랫폼입니다. |
4 | 4 |
|
5 | | -First, run the development server: |
| 5 | +## 기술 스택 |
6 | 6 |
|
7 | | -```bash |
8 | | -npm run dev |
9 | | -# or |
10 | | -yarn dev |
11 | | -# or |
12 | | -pnpm dev |
13 | | -# or |
14 | | -bun dev |
15 | | -``` |
| 7 | +- **Framework**: Next.js 15 (App Router) |
| 8 | +- **Language**: TypeScript |
| 9 | +- **Styling**: Tailwind CSS 4 |
| 10 | +- **State**: Zustand, TanStack Query |
16 | 11 |
|
17 | | -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. |
| 12 | +## 설치 방법 |
18 | 13 |
|
19 | | -You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. |
| 14 | +1. 프로젝트 루트에서 의존성 설치 (이미 설치되어 있다면 생략) |
20 | 15 |
|
21 | | -This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. |
22 | | - |
23 | | -## Learn More |
| 16 | +```bash |
| 17 | +pnpm install |
| 18 | +``` |
24 | 19 |
|
25 | | -To learn more about Next.js, take a look at the following resources: |
| 20 | +## 개발 서버 실행 |
26 | 21 |
|
27 | | -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. |
28 | | -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. |
| 22 | +```bash |
| 23 | +# 루트에서 실행 |
| 24 | +pnpm dev:web |
29 | 25 |
|
30 | | -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! |
| 26 | +# 또는 web 디렉토리에서 직접 실행 |
| 27 | +cd apps/web |
| 28 | +pnpm dev |
| 29 | +``` |
31 | 30 |
|
32 | | -## Deploy on Vercel |
| 31 | +개발 서버는 [http://localhost:3000](http://localhost:3000)에서 실행됩니다. |
33 | 32 |
|
34 | | -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. |
| 33 | +## 프로젝트 구조 |
35 | 34 |
|
36 | | -Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. |
| 35 | +```plaintext |
| 36 | +web/ |
| 37 | +├── public/ # 정적 파일 |
| 38 | +│ ├── example/ # 예제 비디오 파일 |
| 39 | +│ └── static/ # 정적 이미지 |
| 40 | +├── src/ |
| 41 | +│ ├── app/ # Next.js App Router |
| 42 | +│ │ ├── (with-side-bar)/ # 사이드바가 있는 레이아웃 그룹 |
| 43 | +│ │ │ ├── dashboard/ # 대시보드 페이지 |
| 44 | +│ │ │ ├── library/ # 라이브러리 페이지 |
| 45 | +│ │ │ └── topic/ # 토픽 페이지 |
| 46 | +│ │ ├── login/ # 로그인 페이지 |
| 47 | +│ │ ├── redirect/ # 로그인 리다이렉트 페이지 |
| 48 | +│ │ ├── layout.tsx # 루트 레이아웃 |
| 49 | +│ │ └── page.tsx # 랜딩 페이지 |
| 50 | +│ ├── assets/ # 폰트, SVG 등 |
| 51 | +│ ├── components/ # React 컴포넌트 |
| 52 | +│ │ ├── (with-side-bar)/ # 사이드바 관련 컴포넌트 |
| 53 | +│ │ ├── common/ # 공통 컴포넌트 |
| 54 | +│ │ ├── landing/ # 랜딩 페이지 컴포넌트 |
| 55 | +│ │ └── provider/ # Provider 컴포넌트 |
| 56 | +│ ├── constants/ # 상수 정의 |
| 57 | +│ ├── hooks/ # 커스텀 훅 |
| 58 | +│ ├── lib/ # 라이브러리 설정 |
| 59 | +│ │ ├── tanstack/ # TanStack Query 설정 |
| 60 | +│ │ └── zustand/ # Zustand 스토어 |
| 61 | +│ ├── models/ # 데이터 모델 |
| 62 | +│ ├── page/ # 경로에 해당하는 페이지 컴포넌트 |
| 63 | +│ ├── schemas/ # Zod 스키마 |
| 64 | +│ ├── services/ # API 서비스 |
| 65 | +│ ├── types/ # TypeScript 타입 정의 |
| 66 | +│ └── utils/ # 유틸리티 함수 |
| 67 | +├── next.config.ts # Next.js 설정 |
| 68 | +└── postcss.config.mjs # PostCSS 설정 |
| 69 | +``` |
0 commit comments