팀원: spark / skim / hybae / kkim / Juhpark
-- mac environment
git clone https://github.com/KKWANH/webserv.git webserv_github
$ make
$ ./webserv
You can change your config file and mime setting file on server.cpp.
TAB: 4 spaces, doesn't matter tap or a space
Underbar at first character
Snake case (small letter only, separate word with _)
No limits for variable letter
Recommend 3 letter (_num, _str, ...): it could be confused
Example: _num, _header_field, _mth
Pascal Case (Start with BIG letter, separate with alphabet size)
Example: ConfigController, RequestMessage
Camel Case (start with small letter, separate with alphabet size)
- case 1
return
functionName(_parameter)
{ function }
- case 2 : Simple function, getter/setter, ...
return functionName(_parameter) { function }
Class explanation (1.5.1)
Function explanation? (1.5.2) : (hasn't been introduced yet, but soon)
Anything one-line comment you want to explain (//)
/**
Header
-----------
> Class_Name : PARENT
Private variable ...
Protected variable ...
Public variable ...
Member function ...
Nonmember function ...
Private function ...
... anything you have.
*/
함수 이름과 한줄설명, 탭으로 시작 위치 맞추기
한줄로만 간단하게 설명, 자세한 리턴이나 파라미터 관련 내용은 1.5.2.에서
예시 보기
/**
-------------------------------------------------------------
> HTTPMessage
- Protected Variables:
_header_field map(string, string), store header field
_start_line string, Save start lines
_msg_body string, Save the message body
- Member functions:
Getter: MessageBody, StartLine
parseHeaderField Parse header field and save to _header_field(map).
setHeaderField Insert new pair to _header_field
printHeaderField We know it remains for debugging
-------------------------------------------------------------
*/
함수와 탭 맞추기
/** (/*로 하면 @param, @return 등이 Highlight 처리가 안됨 vscode 기준)
간단한 설명 (1.5.1.의 설명이랑 같아도 됨)
@return explanation
@param _var explanation
@todo
... etc
*/
예시 보기
/**
Parse header field and save to _header_field(map).
@return last_index + 1
@param _msg 클라이언트 측에서 전송하는 데이터
@param _pos start_line을 parsing하고 난 이후의 뒤
*/
:gitmoji: [키워드] 설명
키워드 | 설명 |
---|---|
temp | 임시로 올릴때 |
[keyword] | 업데이트 키워드 (fix/기능, design, readme, 등등) |
main | 상의 후 중요한거 업데이트할때 |
Emoji | 이름 | 설명 |
---|---|---|
🌱 | seedling |
개발 중일 때 중간 업로드 |
✨ | sparkles |
새로운 기능 업로드 |
⛑️ | rescue_worker_helmet |
버그, 오류 등 고치기 |
🛠️ | hammer_and_wrench |
리팩토링 |
💄 | lipstick |
디자인 변경 |
✏️ | pencil2 |
커멘트(주석) 추가, 메모, 등등 |
✅ | white_check_mark |
테스트 |
🎸 | guitar |
기타 수정 (기타와 기타를 이용한 언어유희 깔깔) |