[심주원] 스프린트 미션 5#75
Open
joowon-shim wants to merge 10 commits into
Open
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
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.
스프린트 미션 5 PR
배포 주소
기본 요구사항
공통
프론트엔드 구현 요구사항
랜딩 페이지
/로 설정했습니다.중고마켓 페이지
/items로 설정했습니다./items일 때 상단 내비게이션바의중고마켓버튼 색상을#3692FF로 적용했습니다.상품 등록하기버튼 클릭 시/registration페이지로 이동하도록 구현했습니다.상품 등록 페이지
/registration으로 설정했습니다./items/:id)로 이동하도록 구현했습니다.백엔드 구현 요구사항
Product 스키마
id,name,description,price,tags,createdAt,updatedAt필드를 사용했습니다.image를 사용했습니다._id를 응답에서id로 변환해 사용했습니다.timestamps: true를 사용해createdAt,updatedAt을 생성했습니다.상품 등록 API
name,description,price,tags를 입력하여 상품을 등록하도록 구현했습니다.201상태 코드를 반환하도록 구현했습니다.상품 상세 조회 API
id,name,description,price,tags,createdAt를 조회하도록 구현했습니다.404상태 코드를 반환하도록 구현했습니다.400상태 코드를 반환하도록 구현했습니다.상품 수정 API
404상태 코드를 반환하도록 구현했습니다.400상태 코드를 반환하도록 구현했습니다.400상태 코드를 반환하도록 구현했습니다.상품 삭제 API
404상태 코드를 반환하도록 구현했습니다.400상태 코드를 반환하도록 구현했습니다.상품 목록 조회 API
id,name,price,createdAt를 조회하도록 구현했습니다.name,description에 포함된 단어로 검색할 수 있도록 구현했습니다.서버 공통
.env파일에 환경 변수를 설정했습니다.심화 요구사항
상품 등록 페이지
유효성 조건
추가 구현
/login로그인 페이지를 추가했습니다./signup회원가입 페이지를 추가했습니다.