Team

🗃️ Github

GitHub - LeeChangHyeong/igeo-mubwotna: 👨🏻‍💻스파르타 코딩클럽 Team 'E거 I4아이가'👨🏻‍💻 요리 초보들을 대상으로 본인만의 레시피를 소개하고 공유하는 사이트

📽️ 시연

https://youtu.be/OYEJsxWfUNc

🗒️ 발표 자료

14조 발표자료.key


👣 개인과제

1. 프로젝트


2. 기획 관련 메모

🍚

3. WBS & Tasks


🏝️ Ground Rules

1. 쉴 때 슬랙에 꼭 공유하고 가기
2. 점심식사, 저녁식사 후 스몰토크 하기
3. 점심시간 13:00 ~ 14:00, 
	 저녁시간 19:00 ~ 20:00

🚩 Goals

내배캠 끝까지 다 같이 완주해내기!!!

🕑 회의

점심 - 14:00 ~ 14:20
저녁 - 20:00 ~ 20:20

막히거나 의논해야할 일이 있으면 수시로!

🚦 Project Rules

Code Convention

Github Rules

KPT 회고

🌞 계획표

요일 별 상시 업무 [D-5]

📢 SA 서면피드백


4. 와이어프레임

https://www.figma.com/embed?embed_host=notion&url=https%3A%2F%2Fwww.figma.com%2Fdesign%2FMT6gpq3gXYgGTc9IZM17Wv%2F%25EC%259D%25B4%25EA%25B1%25B0-%25EB%25AC%25B4-%25EB%25B4%25A4%25EB%2582%2598%3Fnode-id%3D0-1%26t%3DfNe5i58tZCuLPkUW-0

5. API 명세서 (구현 기능 안에 상세 설명 추가)

API 명세서

6. ERD


화면 캡처 2024-06-05 115803.jpg

Table Users {
  id bigint [primary key]
  user_id varchar
  password varchar
  name varchar
  email varchar
  description varchar  //한줄 소개
  status enum('ACTIVE','WITHDRAWN') //정상,탈퇴
  refresh_token varchar
  status_modified_at timestamp
  created_at timestamp 
  modified_at timestamp
}
 
Table Recipe {
  id bigint [primary key]
  user_id bigint
  title varchar
  content varchar
  like bigint
  created_at datetime
  modified_at datetime
}
 
Table Comments {
  id bigint [primary key]
  recipe_id bigint
  user_id bigint
  content varchar
  like bigint
  created_at datetime
  modified_at datetime
}

Table RecipeLikes {
  id bigint [primary key]
  user_id bigint
  recipe_id bigint
  created_at datetime
  modified_at datetime
}

Table CommentLikes {
  id bigint [primary key]
  user_id bigint
  content_id bigint
  created_at datetime
  modified_at datetime
}

Ref: Comments.user_id > Users.id // many-to-one
Ref: Recipe.user_id > Users.id // many-to-one
Ref: Comments.recipe_id > Recipe.id // many-to-one
Ref: RecipeLikes.recipe_id > Recipe.id // many-to-one
Ref: RecipeLikes.user_id > Users.id // many-to-one
Ref: CommentLikes.content_id > Comments.id // many-to-one
Ref: CommentLikes.user_id > Users.id // many-to-one