🔥 Git 주소

https://github.com/mini-project-evey-team/four-cuts-frontend

https://github.com/mini-project-evey-team/four-cuts-backend

🔥 Figma 주소

https://www.figma.com/file/MbsZFcbjwxp8YEJLKlwHmX/4cut?type=design&node-id=0-1&mode=design

🔥 API 명세

페이지 기능 method API url request response 구현 하는 사람
메인 인생네컷 메인 사진 조회 GET /api/main/photo {
photoUrls: [
링크 1, 링크2,링크3, 링크4, 링크5
]
} 정지현
인생네컷 글 목록 인생네컷 게시글 목록 조회 GET /api/post?page=1 [
{
id: 8,
username: "username",
title: "ㅁㄴ",
content: "ㅁㄴㄹㅇㄹ",
photoUrl: [
링크 1, 링크2,링크3, 링크4
],
createdAt: "2023-07-19 11:16:52"
},
{
id: 7,
username: "username",
title: "ㄴ",
content: "ㄴ",
photoUrl: [
링크 1, 링크2,링크3, 링크4
],
createdAt: "2023-07-19 11:16:22"
}, 이채원
인생네컷 글 상세 인생네컷 게시글 상세 조회 GET /api/post/{postId} {
id: 7,
username: "username",
title: "ㄴ",
content: "ㄴ",
photoUrl: [
링크 1, 링크2,링크3, 링크4
],
createdAt: "2023-07-19 11:16:22"
} 이채원
인생네컷 글 작성 인생네컷 게시글 작성 POST /api/post {username : 사용자 이름, title:제목, content:내용, photos: List<MultipartFile>} {msg: 작성 완료} 정지현

🔥 Git 진행 방식

  1. git checkout -b "feature/write-post-function"
  2. git checkout -b "feature/write-post-function"
  3. 코드 작업
  4. git add .
  5. git push
  6. 깃 사이트에서 풀 리퀘 날리기
  7. 코드 리뷰 하고 Main에 머지하기
  8. git checkout main
  9. git pull