Screen Recording 2024-05-27 at 4.20.50 AM.mov

https://www.figma.com/design/ryTkKUa4UaJOi3P4XhJoXT/개발자-미니인턴?node-id=1-31&t=QmGu1MGxIzohMIuH-0

결과물

Rest APIs 디자인

Board

post Schema

{
	id: string,
	category: string,
	title: string,
  nickname: string,
  createdAt: Date,
  viewCount: string,
	text: string,
	file: string (optional), 
	hashtag: string[],
	comment: {username, commentText, createdAt}[]
}

GET /posts

Response 200

{
	[post, post, post, post]
}

GET /posts?category=:category