Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
6e9263c
feat: Protected Route 구현 및 마이페이지 API 연동
kimdoyeon1234 Apr 29, 2026
3c108c4
docs: 5주차 파일 정리 및 서버 폴더 제외
kimdoyeon1234 Apr 29, 2026
884d79c
fix: PR에서 4주차 폴더 제외 및 5주차 미션만 반영
kimdoyeon1234 Apr 29, 2026
40c5326
feat: 리프래시 토큰 구현
kimdoyeon1234 Apr 29, 2026
4c44e56
feat: 구글 소셜 로그인 연동
kimdoyeon1234 Apr 29, 2026
ed90522
feat: LP 목록 및 상세 페이지 구현 완료
kimdoyeon1234 May 6, 2026
6d25cd4
chore: .gitignore 적용 및 불필요한 파일 제거
kimdoyeon1234 May 6, 2026
83e647a
chore: PR에서 4, 5주차 폴더 제거
kimdoyeon1234 May 6, 2026
e03b138
chore: PR에서 불필요한 week4 및 server 폴더 제거
kimdoyeon1234 May 6, 2026
825fd70
fix: PR에서 week4 폴더 최종 제거
kimdoyeon1234 May 6, 2026
5493038
final: week6 외 모든 폴더 PR에서 제거
kimdoyeon1234 May 6, 2026
48d4666
final: week6 외 모든 폴더 PR에서 제거
kimdoyeon1234 May 6, 2026
b5594b2
feat: 7주차 과제 제출
kimdoyeon1234 May 12, 2026
270e4f2
feat: 7주차 미션1 - useMutation 기반 LP 등록 및 댓글 CRUD 구현 완료
kimdoyeon1234 May 12, 2026
9105b7c
feat: 좋아요 및 마이페이지 탭 구현
kimdoyeon1234 May 15, 2026
4709e76
feat: useDebounce 커스텀 훅 구현 및 검색창 토글 연동
kimdoyeon1234 May 19, 2026
700370d
chore: 나머지 주차 pr제외
kimdoyeon1234 May 19, 2026
bba46d1
feat: 9주차 Redux Toolkit 구현 및 Zustand 리팩토링 완료
kimdoyeon1234 May 31, 2026
7c2b7ba
feat week10 영화 검색 기능 구현 및 상세 정보 모달 최적화
kimdoyeon1234 Jun 1, 2026
69a3290
chore: Vercel 배포 설정 파일 추가 및 라우팅 추가
kimdoyeon1234 Jun 1, 2026
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
33 changes: 0 additions & 33 deletions .github/pull_request_template.md

This file was deleted.

10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,14 @@
.vscode/
.DS_Store
Thumbs.db
week5/server/
week4/
week6/server/

# Vite 관련 캐시 및 빌드 결과물 무시
**/.vite/
**/dist/

# 패키지 매니저 관련 (이미 있다면 중복 체크!)
node_modules/
package-lock.json (선택사항: 보통은 올리지만, 꼬였을 땐 무시하기도 해)
1 change: 0 additions & 1 deletion README.md

This file was deleted.

24 changes: 24 additions & 0 deletions week10/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
16 changes: 16 additions & 0 deletions week10/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# React + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Oxc](https://oxc.rs)
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/)

## React Compiler

The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).

## Expanding the ESLint configuration

If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) for information on how to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project.
21 changes: 21 additions & 0 deletions week10/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import js from '@eslint/js'
import globals from 'globals'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import { defineConfig, globalIgnores } from 'eslint/config'

export default defineConfig([
globalIgnores(['dist']),
{
files: ['**/*.{js,jsx}'],
extends: [
js.configs.recommended,
reactHooks.configs.flat.recommended,
reactRefresh.configs.vite,
],
languageOptions: {
globals: globals.browser,
parserOptions: { ecmaFeatures: { jsx: true } },
},
},
])
13 changes: 13 additions & 0 deletions week10/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>week10</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading