-
Notifications
You must be signed in to change notification settings - Fork 12
[8주차] Team 이어드림 김영서 & 이주희 미션 제출합니다. #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
kkys00
wants to merge
49
commits into
CEOS-Developers:master
Choose a base branch
from
VoteDream:develop
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chore: 기본 세팅
chore: 디자인 시스템 세팅
Feature/sign
Feature/votes 투표 페이지 만듬
Feature/home 홈페이지
Feature/responsive 홈, 로그인, 회원가입 페이지 반응형
chore: 반응형 적용
Feature/api 로그인, 회원가입 api 연결
docs: readme 작성
Feat: API 연결
* chore: 변수명 스네이크 케이스 변경, 주석 삭제 * fix: 팀명 오류 수정 * feat: 에러 메시지 로직 추가 및 변경 * style: 로고 헤더 수정 * style: 투표 이동 UI 변경 * style: auth 레이아웃 변경 * feat: 1등 동점자 처리 로직 추가 * fix: voteId 2로 변경 * feat: 투표 여부 반영
* chore: 변수명 스네이크 케이스 변경, 주석 삭제 * fix: 팀명 오류 수정 * feat: 에러 메시지 로직 추가 및 변경 * style: 로고 헤더 수정 * style: 투표 이동 UI 변경 * style: auth 레이아웃 변경 * feat: 1등 동점자 처리 로직 추가 * fix: voteId 2로 변경 * feat: 투표 여부 반영 * fix: 로컬 스토리지 에러 수정
* chore: 변수명 스네이크 케이스 변경, 주석 삭제 * fix: 팀명 오류 수정 * feat: 에러 메시지 로직 추가 및 변경 * style: 로고 헤더 수정 * style: 투표 이동 UI 변경 * style: auth 레이아웃 변경 * feat: 1등 동점자 처리 로직 추가 * fix: voteId 2로 변경 * feat: 투표 여부 반영 * fix: 로컬 스토리지 에러 수정 * chore: readme 작성 * style: 글자 깨짐 수정
gustn99
pushed a commit
to Loopz-Official/next-vote-21th
that referenced
this pull request
Jun 28, 2025
…pm_and_yarn/brace-expansion-1.1.12: bump brace-expansion from 1.1.11 to 1.1.12 chore(deps): bump brace-expansion from 1.1.11 to 1.1.12
Feat: 중복 유저 처리 로직 추가
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
배포 링크 🗳️투표드림
피그마

/home
/auth/register
/auth/login
/vote
,/demovote
/vote/result
,/demovote/result
1. 1등 동점자 처리
2. 득표 수, 득표율 표시
6. 투표 완료된 경우 하단에 결과 보기로 이동 / 미완인 경우 투표하기로 이동
투표드림 팀
Key Question
1. Zod 스키마가 무엇인지, 어떻게 활용할 수 있는지 알아봅시다.
1. Zod 스키마
Zod는 스키마 선언 및 유효성 검사 라이브러리이다. 스키마란 데이터의 형태 및 구조로 Zod를 통해 스키마를 선언하고 런타임에서 구조나 타입에 대한 유효성 검사를 실행할 수 있다.
2. 어떻게 활용할 수 있는가
2. 이번 프로젝트에서 토큰 관리를 어떻게 할 예정인지, 그리고 왜 그런 방법을 선택했는지에 대해 설명해 주세요.
1. 토큰 관리 계획 => 쿠키에 보관
Access Token
은 zustand 저장Refresh Token
은 백엔드 httpOnly Cookie설정되어 보내짐2. 왜 이런 방법을 선택했는가
accessToken
: 가볍고 빠르게 인증refreshToken
: 자동 로그인/세션 유지