-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[Feat][BE] : #40 : webSocket ์ฐ๊ฒฐ ์ธํ
- Loading branch information
Showing
82 changed files
with
31,161 additions
and
4,122 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,6 @@ | |
#TMP | ||
tmp | ||
|
||
#DOCS | ||
/docs | ||
|
||
#idea | ||
.idea | ||
|
||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const PORT = 3001; |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import { WebSocketServer } from 'ws'; | ||
|
||
const activeConnections = {}; // token๋ณ๋ก ์ฐ๊ฒฐ์ ๊ด๋ฆฌํ๊ธฐ ์ํ ๊ฐ์ฒด | ||
|
||
export function initializeWebSocketServer(server) { | ||
const wss = new WebSocketServer({ server }); | ||
|
||
wss.on('connection', (ws, req) => { | ||
// URL์์ token ์ถ์ถ | ||
// TODO: ํ๋ก ํธ ๋ผ์ฐํฐ ๋ฐ token ์ค์ ์๋ฃ ํ ํ ์คํธ | ||
const url = new URL(req.url, `http://${req.headers.host}`); | ||
const token = url.searchParams.get('token'); | ||
|
||
if (!token) { | ||
ws.close(4001, 'Token is required'); | ||
return; | ||
} | ||
|
||
// ๋์ผํ token์ผ๋ก ์ด๋ฏธ ์ฐ๊ฒฐ๋ ํด๋ผ์ด์ธํธ๊ฐ ์์ผ๋ฉด ์ด์ ์ฐ๊ฒฐ์ ๊ฐ์ ๋ก ์ข ๋ฃ | ||
if (activeConnections[token]) { | ||
activeConnections[token].close(4000, 'Duplicate connection'); | ||
} | ||
|
||
// ์๋ก์ด ์ฐ๊ฒฐ์ ํ์ฑํ๋ ์ฐ๊ฒฐ ๋ชฉ๋ก์ ์ ์ฅ | ||
activeConnections[token] = ws; | ||
|
||
console.log(`Client connected with token: ${token}`); | ||
|
||
// ํด๋ผ์ด์ธํธ๋ก๋ถํฐ ๋ฉ์์ง ๋ฐ์์ ๋์ ์ด๋ฒคํธ ์ฒ๋ฆฌ | ||
ws.on('message', message => { | ||
console.log(`Received from ${token}:`, message); | ||
}); | ||
|
||
// ํด๋ผ์ด์ธํธ ์ฐ๊ฒฐ ์ข ๋ฃ ์ | ||
ws.on('close', (code, reason) => { | ||
console.log(`Client disconnected with token: ${token}, Code: ${code}, Reason: ${reason}`); | ||
// ์ฐ๊ฒฐ์ด ์ข ๋ฃ๋๋ฉด activeConnections์์ ํด๋น token ์ ๊ฑฐ | ||
delete activeConnections[token]; | ||
}); | ||
}); | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? | ||
|
||
.docusaurus | ||
build |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<div align="center"> | ||
<img width="600" alt="image" src="https://github.com/user-attachments/assets/f7973fe3-dd8a-4643-9536-53e63db1f6fe"> | ||
<h3 align="center">๐งญ ์ ๋ฐ๋ผ ๊ธธ๋ฐ๋ผ ๐งญ</h3> | ||
<h4 align="center">์ค์ฅ๋ ์ธต์ ์ํ ์ ๊ทผ์ฑ์ ๋ฐํ์ผ๋ก ํ ์์น ๊ธฐ๋ฐ ์๋น์ค</h4> | ||
</div> | ||
|
||
|
||
<div align="center"> | ||
<br /> | ||
|
||
## ๐ฉโ๐ป ํ ์๊ฐ | ||
|
||
<img width="200" src="https://github.com/user-attachments/assets/ab367ecb-be89-4076-abdf-bf00bdc29a4f" /> | ||
<div>(๋ฐ๋ผํ)</div> | ||
|
||
### ์๋ ํ์ธ์, ํ "๋ฐ๋ผ๋ฐ๋ผ" ์ ๋๋ค! | ||
|
||
<br /> | ||
|
||
## ๐ ๋งํฌ ์๋ด | ||
|
||
<p> | ||
<a href="https://www.notion.so/127b1b2b649180e88f70d6a4648924a0?pvs=4">ํ ๋ ธ์ </a> | | ||
<a href="https://github.com/boostcampwm-2024/web28-DDara/wiki">ํ ์ํค</a> | | ||
<a href="https://www.figma.com/design/r9nl4Jcz9VXIMbrpf50wY6/PickMeUp?node-id=90-1897">๊ธฐํ์</a> | | ||
<a href="https://www.figma.com/design/r9nl4Jcz9VXIMbrpf50wY6/PickMeUp?node-id=87-929">๋์์ธ</a> | ||
<!-- <br /> | ||
<a href="https://www.notion.so/127b1b2b6491805b9055d480ab56e432?v=ee8c766f016148d7bfd6c6f49d782b10&pvs=4">ํ์๋ก</a> | | ||
<a href="https://www.notion.so/129b1b2b649180ef8ad6f356251f2dec?pvs=4">๊ทธ๋ผ์ด๋ ๋ฃฐ</a> | | ||
<a href="https://www.notion.so/812667c55af84dba8d18f4902b56a85e?pvs=4">๊ธฐ๋ฅ ๋ช ์ธ</a> --> | ||
</p> | ||
|
||
</div> | ||
|
||
<div align="center"> | ||
<br /><br /><br /> | ||
|
||
|
||
|
||
## ๐ฑ ํ์ ์๊ฐ | ||
|
||
|J060_๊น์ฃผ์|J174_์ด๋์จ|J210_์์ฌ๋|J234_์ ํ์ธ| | ||
|:--:|:--:|:--:|:--:| | ||
|<a href="https://github.com/juwon5272"><img src="https://github.com/user-attachments/assets/f774ff48-8831-490f-b0fe-b18b024f7916" width="150px;" alt=""/></a>|<a href="https://github.com/leedongyull"><img src="https://github.com/user-attachments/assets/4d682b1f-0f91-4547-8a7d-1f6b00bee674" width="150px;" alt=""/></a>|<a href="https://github.com/effozen"><img src="https://github.com/user-attachments/assets/92bddae1-19ce-4b06-811e-52df15ac726c" width="150px;" alt=""/></a>|<a href="https://github.com/happyhyep"><img src="https://github.com/user-attachments/assets/40ac933c-3e19-4884-a5e9-da2f2298dd72" width="150px;" alt=""/></a>| | ||
|FE|FE|FE|Full Stack (FE + BE)| | ||
|<a href="https://github.com/juwon5272">@juwon5272</a>|<a href="https://github.com/leedongyull">@leedongyull</a>|<a href="https://github.com/effozen">@effozen</a>|<a href="https://github.com/happyhyep">@happyhyep</a>| | ||
|
||
<br /> | ||
|
||
## โ ๊ธฐ์ ์คํ | ||
|
||
์ถํ ์ถ๊ฐ ์์ ์ ๋๋ค. | ||
|
||
<!-- | ||
## ๐จโ๐จโ๐งโ๐ฆ ํ์ ์ ๋ต | ||
## ๐ ๊ทธ๋ผ์ด๋ ๋ฃฐ | ||
--> | ||
</div> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
zen: | ||
name: ์์ฌ๋ | ||
title: J210 | ||
url: https://fantasmith.com | ||
image_url: https://github.com/effozen.png | ||
socials: | ||
x: EffoZen | ||
github: effozen | ||
linkedin: effozen | ||
|
||
leedongyull: | ||
name: ์ด๋์จ | ||
title: J174 | ||
url: https://github.com/leedongyull | ||
image_url: https://github.com/leedongyull.png | ||
socials: | ||
github: leedongyull | ||
|
||
juwon5272: | ||
name: ๊น์ฃผ์ | ||
title: J060 | ||
url: https://github.com/juwon5272 | ||
image_url: https://github.com/juwon5272.png | ||
socials: | ||
github: juwon5272 | ||
|
||
happyhyep: | ||
name: ์ ํ์ธ | ||
title: J234 | ||
url: https://github.com/happyhyep | ||
image_url: https://github.com/happyhyep.png | ||
socials: | ||
github: happyhyep |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
--- | ||
slug: ground_rule | ||
title: โ๏ธ Ground Rule | ||
tags: [teamInfo] | ||
sidebar_position: 2 | ||
sidebar_label: โ๏ธ ๊ทธ๋ผ์ด๋ ๋ฃฐ | ||
keywords: ['members', 'team', 'ํ์', '์๊ฐ'] | ||
pagination_label: Markdown features | ||
authors: [zen] | ||
last_update: | ||
date: 2024-10-30 | ||
authors: [zen] | ||
--- | ||
|
||
<br/> | ||
|
||
> ์ฐ๋ฆฌ๋ค์ ๊ณตํต ๋ชฉํ์ ๊ทธ์ ๋ฐ๋ฅธ ํ๋ ๊ฐ๋ น์ ๋๋ค. | ||
ํ์ ๋ชจ๋ ์์ฌ๊ฒฐ์ ์ ๊ทธ๋ผ์ด๋ ๋ฃฐ์ ์ ๊ฐํด์ ํ๋จํฉ๋๋ค. | ||
> | ||
|
||
## โ ์ 1 ์์น | ||
|
||
### โย No Dummy Qeustion! | ||
|
||
- ์ธ์์ ๋ฐ๋ณด๊ฐ์ ์ง๋ฌธ์ ์์ต๋๋ค. ๊ทธ ํ๋์ ๋ฌธ์ ๊ฐ ์์ ๋ฟ. | ||
- ์ ํฌ๋ ์ ๋ ๊ทธ ์ด๋ ํ ์ง๋ฌธ์๋ ๋น์์, ์กฐ์ ๋ฑ์ ํํ์ง ์์ต๋๋ค..! | ||
- ์ด๋ ํ ์ง๋ฌธ์๋ ์ต์ ์ ๋ต์ ์ ๊ณตํฉ๋๋ค. | ||
- ๋ฐ๋๋ก, ์ง๋ฌธ์๋ ๋ฐ๋์ ์ง๋ฌธํ๋ ๊ฒ์ ๋ํ ๊ทผ๊ฑฐ๋ฅผ ๋ง๋ จํ ์ํ๋ก ์ง๋ฌธํฉ๋๋ค. | ||
- ์ํธ ์์๋ฅผ ์กด์คํฉ๋๋ค. | ||
|
||
<br/><br/> | ||
|
||
## ๐ ํ๋ก์ ํธ์ ๋ํ ๊ณตํต์ ๋ชฉํ | ||
|
||
### ๐ย ํฌํธํด๋ฆฌ์ค์ ์ธ ์ ์๋ ์ค์ฌ์ฉ์๋ฅผ ์ํ ์๋น์ค | ||
|
||
- **ํฌํธํด๋ฆฌ์ค์ ๋ด์ ๊ฐ์น ์๋ ํ๋ก์ ํธ๋ฅผ ๊ฐ๋ฐ**: ๋ชจ๋ ํ์์ ํฌํธํด๋ฆฌ์ค๋ก ํ์ฉํ ์ ์๋ ์์ฑ๋ ๋์ ํ๋ก์ ํธ๋ฅผ ๋ชฉํ๋ก ํ๋ค. | ||
- **์ค์ฌ์ฉ์์๊ฒ ์๋ฏธ ์๋ ์๋น์ค**: ํ๋ก์ ํธ๋ ์ค์ ์ฌ์ฉ์์๊ฒ ๋์์ด ๋ ์ ์๋ ๊ธฐ๋ฅ์ ์ ๊ณตํด์ผ ํ๋ค. ์ฌ๋ฏธ๋ฅผ ์ํ ํ๋ก์ ํธ์ผ์ง๋ผ๋, ๋ช ํํ ์ฌ์ฉ์ ๊ฒฝํ(UX)์ ๊ธฐ๋ฐ์ผ๋ก ํด์ผ ํจ. | ||
- **์ ์ง๋ณด์ ๊ฐ๋ฅ์ฑ**: ํ๋ก์ ํธ๋ ์ง์์ ์ผ๋ก ์ ์ง๋ณด์๋ ์ ์๋๋ก ์ค๊ณํ๋ฉฐ, ์ต์ 1๋ ๊ฐ ์ ์ง๋ณด์ํ ์ ์๋๋ก ๊ณํ์ ์ธ์ด๋ค. | ||
|
||
<br/><br/> | ||
|
||
|
||
## ๐ ๊ธฐ์ ์ ์ธ ๋ชฉํ | ||
|
||
- ์ถํ ์ฃผ์ ๊ฐ ์ ํด์ง๋ฉด ๋์ | ||
|
||
<br/><br/> | ||
|
||
## ๐ ํ ๋ฌธํ | ||
|
||
### ๐ย ์ฑ๊ธ๋ฒ๊ธ ํํํธํธ ์ฐ๋ฆฌ๋ค | ||
|
||
- **์ฆ๊ฒ๊ณ ํ๋ฐํ ํ ๋ถ์๊ธฐ**: ํ์๋ค ๊ฐ์ **์ํต์ด ์ํํ๊ณ ํธ์ํ ๋ถ์๊ธฐ**๋ฅผ ์ ์งํ๋ค. ์ค๋ชฐํก์ด๋ ๋น๊ณต์์ ์ธ ๋ํ๋ฅผ ํตํด ํ ๋ถ์๊ธฐ๋ฅผ ํ๊ธฐ์ฐจ๊ฒ ์ ์งํ๋ฉฐ, ์๋ก์ ๋๊ธฐ๋ถ์ฌ๋ฅผ ์ํด ๋ ธ๋ ฅํ๋ค. | ||
- **๊ฑด๊ฐ๊ณผ ์๋ผ๋ฐธ ์กด์ค**: ๊ณผ๋ํ ์ ๋ฌด๋ณด๋ค๋ ๊ฑด๊ฐ์ ์ต์ฐ์ ์ผ๋ก ๊ณ ๋ คํ๋ฉฐ, **ํด์์ด ํ์ํ ๊ฒฝ์ฐ** ์ธ์ ๋ ์์ ๋กญ๊ฒ ์ฌ๋ ๋ฌธํ๋ฅผ ์ฅ๋ คํ๋ค. ์ฅ๊ธฐ์ ์ผ๋ก **์ง์ ๊ฐ๋ฅํ ํ๋ก์ ํธ**๋ฅผ ๋ชฉํ๋ก ํ๋ค. ๋จ, ๋ง๊ฐ ์ง์ ์ด๋ ์คํ๋ฆฐํธ ๋๋ ๋ฌ๋ฆฐ๋ค. | ||
- **๊ฐ์์ ์๊ฒฌ ์กด์ค**: ์๋ก์ ์๊ฒฌ์ ๊ฒฝ์ฒญํ๊ณ , ์๊ฒฌ ์ถฉ๋์ด ๋ฐ์ํ์ ๋๋ ๋ ์ฌ์ด์์ ํด๊ฒฐ๋ณด๋ค๋ ๋ฐ๋์ ํ์ ์ ์ฒด๊ฐ ์ฐธ์ฌํ์ฌ ๋ ผ์ํ๋ค. ์ด๋, ๋ค์๊ฒฐ ๋๋ ํ์๋ฅผ ํตํด ํด๊ฒฐํ๋ค. ํ์ํ ๊ฒฝ์ฐ **์นด๋๋ฅผ ์ฌ์ฉํ ์์ฌ๊ฒฐ์ ๋ฐฉ์**(ex: "๋ ๋ง ์ข ํ๊ฒ ํด์ค ์นด๋")์ ๋์ ํด ์ํํ ์์ฌ๊ฒฐ์ ์ ์งํํ ์ ์๋๋ก ํ๋ค. | ||
|
||
<br/><br/> | ||
|
||
## ๐ ํ์ ๋ฐ ์์ฌ์ํต ๊ท์น | ||
|
||
### ๐ฌย ์ฆ์ ์ปค๋ฎค๋์ผ์ด์ ์ ํ ์ ์์ด์ผ ํ๋ค. | ||
|
||
- **์ฌ๋ ๋ฐ ํ์ ๋๊ตฌ ํ์ฉ**: ์ฌ๋์ ๊ธฐ๋ณธ ์ํต ๋๊ตฌ๋ก ์ฌ์ฉํ๋ฉฐ, ๋ฉ์์ง๋ฅผ ์ฝ์์ ๋๋ **์ด๋ชจ์ง ๋์ ๋ช ํํ ๋ต๋ณ**์ ๋จ๊ฒจ ์ํต์ ๋ช ํ์ฑ์ ์ ์งํ๋ค. | ||
- **์ค์๊ฐ ํ์ ๋๊ตฌ ์ฌ์ฉ**: ์ค์๊ฐ ์ํต์ด ํ์ํ ๊ฒฝ์ฐ, `Zep` ์ ์ฌ์ฉํด ๋น๋๋ฉด ์ํฉ์์๋ **์ค์๊ฐ ํผ๋๋ฐฑ๊ณผ ์ํต**์ด ์ด๋ฃจ์ด์ง๋๋ก ํ๋ค. | ||
- **์ฝ์ด ํ์ ์ค์**: ๋งค์ผ 10์๋ถํฐ 7์๊น์ง ์ฝ์ด ํ์์ ์ด์ํ๋ฉฐ, ์ด ์๊ฐ ๋์์๋ ์ง์ค์ ์ผ๋ก ํ๋ก์ ํธ์ ์ฐธ์ฌํ๊ณ ๋น ๋ฅธ ํผ๋๋ฐฑ์ ์ ๊ณตํ๋ค. ์ฝ์ด ํ์ ์ธ์๋ ์์จ์ ์ผ๋ก ํ๋ํ ์ ์์ง๋ง, ๊ธด๊ธํ ์ํฉ์์๋ `Zep`, `์ฌ๋`์ ํตํด ์ฆ๊ฐ์ ์ธ ์ํต์ด ์ด๋ฃจ์ด์ ธ์ผ ํ๋ค. | ||
- **์ ๋ขฐ**: ์ฃผ๋ณ์ ๋ฐ์ ๋ฐ ์๊ฐ์ ํ๋ค๋ฆฌ์ง ๋ง๊ณ , ํ์ด ๊ฒฐ์ ํ ๋ด์ฉ์ ์ ์ ์ผ๋ก ์ ๋ขฐํ๋ค. | ||
|
||
|
||
<br/><br/> | ||
|
||
## ๐ ์์ฌ๊ฒฐ์ ๋ฐฉ์ | ||
|
||
### ๐คย ํ ์ ์ฒด๊ฐ ๋์ํ๋ ์์ฌ๊ฒฐ์ | ||
|
||
- **์์ฌ๊ฒฐ์ ์ ํ ์ ์ฒด๊ฐ ์ฐธ์ฌ**: ์ฃผ์ ๊ฒฐ์ ์ ํ์ ๋ชจ๋๊ฐ ๋ ผ์ํ๋ฉฐ, GitHub Issue๋ฅผ ํตํด ์ ๋ฆฌ๋ ๋ฌธ์ ์ ๊ณผ ํด๊ฒฐ ๋ฐฉ์์ ๊ณต์ ํ ํ, ์ถฉ๋ถํ ๊ทผ๊ฑฐ๋ฅผ ๋ฐํ์ผ๋ก ๊ฒฐ์ ํ๋ค. | ||
- **๋ฐ์ผ๋ฆฌ ์คํฌ๋ผ**: ๋งค์ผ ์์นจ **๋ฐ์ผ๋ฆฌ ์คํฌ๋ผ**์ ํตํด ๊ฐ์์ ์์ ์งํ ์ํฉ์ ๊ณต์ ํ๊ณ , ๋ฌธ์ ์ ๋ฐ ํด๊ฒฐ์ฑ ์ ๋ ผ์ํ๋ค. | ||
- **๊ธด๊ธ ์์ฌ๊ฒฐ์ **: ํ์์ `Zep` ๋๋ `์ฌ๋` ์ธ๊ธ์ ํตํด ํ์๋ค์ ์์งํด **๊ธด๊ธ ์์ฌ๊ฒฐ์ **์ ๋น ๋ฅด๊ฒ ๋ด๋ฆฐ๋ค. | ||
- **๋ด ๋ง์ข ๋ค์ด์ค ์นด๋!:** ๊ฐ์ 2 ์ฅ์ ์นด๋๊ฐ ๋ถ์ฌ๋๋ฉฐ, ์๋ก๊ฐ ๋ฉ๋ํ ๋งํ ์์ค์์ ์๊ฒฌ์ด ๋๋ฆฝ๋ ๋ ์ฌ์ฉํ๋ค. ์ฌ์ฉํ ์ฌ๋์ ์๊ฒฌ์ ๋ฌด์กฐ๊ฑด์ ์ผ๋ก ์์ฉํ๋ค. (โ์๋ก๊ฐ ๋ฉ๋ ๊ฐ๋ฅํ ์์์ โ์ด๋ผ๋ ์ ์ ) | ||
|
||
<br/><br/> | ||
|
||
## ๐ ํ๋ก์ ํธ ๊ฐ๋ฐ ์์น | ||
|
||
### ๐ย ์ฌ์ฉ์ ๊ฒฝํ(UX) ์ค์ฌ์ ๊ฐ๋ฐ | ||
|
||
- **์ฌ์ฉ์ ๊ฒฝํ(UX) ์ค์ฌ ๊ฐ๋ฐ**: ๊ธฐ์ ์ ์ธ ์์ฑ๋๋ฟ๋ง ์๋๋ผ **์ฌ์ฉ์์ ๊ด์ ์์ ์๋น์ค์ ์ ์ฉ์ฑ**์ ๊ณ ๋ คํ๋ค. ๊ธฐ๋ฅ์ด ์ ๋์ํ ๋ฟ ์๋๋ผ, ์ฌ์ฉ์๊ฐ ์ฝ๊ฒ ์ดํดํ๊ณ ์ฌ์ฉํ ์ ์์ด์ผ ํ๋ค. | ||
- **์์ ๊ณต์ ๋ฐ ๋ฌธ์ํ**: ๋ชจ๋ ์์ ์ ๋ช ํํ ๊ณต์ ๋์ด์ผ ํ๋ฉฐ, **GitHub Issue**์ **๋ ธ์ **์ ํตํด ์งํ ์ํฉ๊ณผ ๋ฌธ์ ์ ์ ๊ธฐ๋กํ๋ค. ํธ๋ฌ๋ธ์ํ , ๋ฐฐ์ด ๊ธฐ์ , ์ด์ ๋ฑ์ ๊ผผ๊ผผํ ๋ฌธ์ํํด ํ๋ก์ ํธ์ ์ ์ฒด ์งํ์ ๊ธฐ๋กํ๋ค. | ||
|
||
<br/><br/> | ||
|
||
## ๐ ์์ ๋ถ๋ฐฐ ๋ฐ ๊ธฐ๋ก ๊ด๋ฆฌ | ||
|
||
### ๐งโ๐คโ๐งย ๋ถ์ ์ด ์๋ ํ์ | ||
|
||
- **์์ ๊ธฐ๋ก ๊ด๋ฆฌ**: ๋ชจ๋ ์์ ์ ๋ ธ์ ๊ณผ GitHub Pull Request, Issue ๋ฑ์ ํตํด **ํฌ๋ช ํ๊ฒ ๊ด๋ฆฌ**๋๋ค. ์ด๋ฅผ ํตํด ํ๋ก์ ํธ์ ์งํ ์ํฉ์ ์ฝ๊ฒ ํ์ ํ๊ณ , ์์ ์ ํ๋ฆ์ ์ ์งํ ์ ์๋ค. | ||
- **์คํ๋ฆฐํธ ๋ฐฉ์ ๋์ **: ์ฝ์ด ํ์ ๋ด์์ ์ฃผ์ด์ง ์์ ์ ๋ง๋ฌด๋ฆฌํ๊ณ , **์ฃผ ๋จ์๋ก ๋ชฉํ๋ฅผ ์ค์ ํด ๋ฌ์ฑ ์ฌ๋ถ๋ฅผ ํ์ธ**ํ๋ค. ์คํ๋ฆฐํธ ์ข ๋ฃ ํ ํ๊ณ ๋ฅผ ์งํํด ๋ค์ ์คํ๋ฆฐํธ์ ๋ฐ์ํ ๊ฐ์ ์ ์ ๋์ถํ๋ค. | ||
|
||
<br/><br/> | ||
|
||
## ๐ ์ฝ๋ ๋ฆฌ๋ทฐ ๋ฐ PR ๊ท์น | ||
|
||
### ๐งโ๐ปย 4๋ช ์ PR Approve ๋ฐ ์ต์ ์ฃผ 2ํ์ ์ฝ๋ ๋ฆฌ๋ทฐ | ||
|
||
- **์ต์ ์ฃผ 2ํ์ ์ปจ๋ฒค์ ๋ฐ ๋งฅ๋ฝ ํ์ ๋ชฉ์ ์ ์ฝ๋ ๋ฆฌ๋ทฐ**: ํ์๋ค์ด ์๋ก์ ์ฝ๋๋ฅผ ๋ฆฌ๋ทฐํ๋ฉฐ, ์ฝ๋์ ํ์ง๋ ์ค์ํ์ง๋ง, ์ด๋์ ํต์ฌ์ ์ฐ๋ฆฌ์ ์ปจ๋ฒค์ ์ ์๋ก ์ผ๋ง๋ ์ ์งํค๊ณ ์๋์ง ์ด๋ค.. ์ฝ๋ ๋ฆฌ๋ทฐ๋ ํ์์ ์ฑ์ฅ๋ฟ ์๋๋ผ, **์๋ก์ ์์ ์ ์ดํดํ๊ณ ์ํตํ๋ ๊ณผ์ **์ผ๋ก ์ผ๋๋ค. ์ฆ, ๊ฐ์์ ๊ฐ๋ฐ ๋งฅ๋ฝ์ ํ์ ํ๋ ๋ชฉ์ ์ ์ฃผ๋ก ํ๋ค. | ||
- **PR ์น์ธ ๊ท์น**: 4๋ช ๋ชจ๋์ **PR ์น์ธ**์ด ์์ด์ผ๋ง ๊ธฐ๋ฅ์ ๋จธ์งํ ์ ์์ผ๋ฉฐ, ๋ชจ๋ ํ์์ด ํด๋น ๊ธฐ๋ฅ์ ๋ํ ์ถฉ๋ถํ ์ดํด๋ฅผ ๊ฐ์ถ ์ ์๋๋ก ํ๋ค. | ||
- **์์ ์ ํฌ๋ช ์ฑ ์ ์ง**: ์ฝ๋ ๋ฆฌ๋ทฐ์ PR์ ํตํด ํ๋ก์ ํธ์ ๋ชจ๋ ์งํ์ด ํฌ๋ช ํ๊ฒ ๊ณต์ ๋๋ฉฐ, ์ด๋ ํ์ ๊ฐ์ ์ ๋ขฐ๋ฅผ ๊ฐํํ๋ ์ค์ํ ์์๋ก ์์ฉํ๋ค. | ||
- **๋ฐ์ผ๋ฆฌ ์คํฌ๋ผ์ ํ์ฉ:** ์ด์๋, ์ฝ๋ ๊ณต์ ๋ฑ์ ๋ฐ์ผ๋ฆฌ ์คํฌ๋ผ ์๊ฐ์ ๋ํ์ฌ, ์์นจ์ ์ํตํ๋๋ก ํ๋ค. | ||
|
||
<br/><br/> | ||
|
||
## ๐ ํ๋ก์ ํธ ํ๊ณ | ||
|
||
### ๐จย Figma, Miro ๋ฑ์ ์ด์ฉํ ์๊ฐ์ ์ธ ํ๊ณ | ||
|
||
- **ํ๊ณ ๋ฐฉ์**: ํ๋ก์ ํธ ์งํ ์ค **KPT(Keep, Problem, Try) ๋ฐฉ์**์ผ๋ก ์ฃผ๊ธฐ์ ์ธ ํ๊ณ ๋ฅผ ์งํํด, ์ํ ๋ถ๋ถ๊ณผ ๊ฐ์ ํ ์ ์ ๋ถ์ํ๊ณ ๋ค์ ์คํ๋ฆฐํธ์ ๋ฐ์ํ๋ค. ํผ๋๋ฐฑ์ GitHub ๋๋ ํผ๊ทธ๋ง ๋ฑ์ ํ์ฉํด ์๊ฐ์ ์ผ๋ก ์ ๋ฆฌํ๋ค. | ||
- **๊ฒฐ๊ณผ ๊ธฐ๋ก**: ํ๊ณ ๋ด์ฉ๊ณผ ํจ๊ป ํ๋ก์ ํธ ๊ณผ์ ์์์ ๋ฌธ์ ์ ๊ณผ ํด๊ฒฐ ๋ฐฉ์์ ๊ธฐ๋กํ์ฌ **ํฌํธํด๋ฆฌ์ค์์ ํ์ฉ**ํ ์ ์๋ ์๋ฃ๋ก ๋จ๊ธด๋ค. | ||
|
||
<br/><br/> | ||
|
||
## ๐ ๊ธด๊ธ ์ํฉ ๋์ | ||
|
||
### ๐ ย โ์ด์์์!โ | ||
|
||
- **TMT, TMI ๋ฐฉ์ง ์นด๋**: ๊ฐ ํ์์ ํ์์ ์ธ์ ๋ ์ง **"๋ ํ๋ค๋ค ์นด๋"**๋ฅผ ์ฌ์ฉํด TMT, TMI๋ฅผ ๋ง์ ์ ์๋ค. ์ด๋, ๐ช, ๐ดย ์ ๊ฐ์ ์ด๋ชจ์ง๋ ๊ธฐ๋ฅ์ ์ฌ์ฉํด์ ์๋ฆฐ๋ค. | ||
- **์คํฑ ์นด๋**: ๊ธฐ์ ์ ๋ํ ํ์ต์ด๋, ๊ตฌํ์ด ์๊ตฌ์ฌํญ์ ๋์ด์ ๋๋ฌด ๊น์ด์ง ๊ฒฝ์ฐ **"์คํฑ ์นด๋"**๋ฅผ ์ฌ์ฉํด ์ค๋จ์ํค๊ณ , ๋ณธ๋ ํด์ผํ๋ ์ ๋ฌด์ ์ง์ค์ํจ๋ค. ์ด๋ PR ๋ฆฌ๋ทฐ๋ฅผ ํ๋ฉด์๋ , ์ธ์ ๋ ์ง ์์ ๋กญ๊ฒ ์ ์ํ ์ ์๋ค. |
Oops, something went wrong.