# git clone
$ git clone https://github.com/mju-likelion/hackathon-team2-web.git
# installation
$ yarn install
# development
$ yarn start
머릿말 | 설명 |
---|---|
main | 서비스 브랜치 |
develop | 배포 전 작업 기준 |
feat | 기능 단위 구현 |
hotfix | 서비스 중 긴급 수정 건에 대한 처리 |
머릿말 | 설명 |
---|---|
feat | 기능 구현, 추가 |
fix | 버그 수정, 예외 케이스 대응, 기능 개선 |
design | UI 디자인 |
setting | 패키지 설치, 개발 설정 |
refactor | 코드 리팩터링 |
style | 코드 스타일 수정 (code formatting, 세미콜론 추가 등) |
rename | 파일명(or 폴더명)을 수정한 경우 |
test | 테스트 코드 추가 |
docs | README.md 작성 및 변경 |
hotfix | 치명적인 버그를 급하게 수정하는 경우 |
머릿말 | 설명 |
---|---|
Components | PascalCase |
State variables | (boolean values) is, has, should |
Event handlers | handle |
Constants | UPPER_SNAKE_CASE |
Utility functions | camelCase |