본문 바로가기

개발 프로젝트/협업 관련 툴

(4)
Github Issue Intelij에서Github Issue와 연동된 Branch 생성하기 :  https://shinsunyoung.tistory.com/41Github Issue를 Intelij와 연결하기 :  https://shinsunyoung.tistory.com/81
Flowchart 작성하기 https://app.diagrams.net/ Flowchart Maker & Online Diagram SoftwareFlowchart Maker and Online Diagram Software draw.io is free online diagram software. You can use it as a flowchart maker, network diagram software, to create UML online, as an ER diagram tool, to design database schema, to build BPMN online, as a circuit dapp.diagrams.net 개발자로서 Flowchart 작성 방법과 대표적인 기호Flowchart(흐름도)는 개발자가 시스템의 로직..
Git, GitHub 그리고 Commit Git 공식문서https://git-scm.com/docsGit 사용한 비즈니스 플로우Gitflow :  https://techblog.woowahan.com/2553/Github flow vs Gitflow : https://velog.io/@gmlstjq123/Git-Flow-VS-Github-FlowGit 설치 (MAC) 1. 터미널 실행2. brew intall git 입력3. git ‒version 입력해 확인4. Config 설정 (User Name / User Email 설정) 5.설치완료 Git 초기설정로컬에서 사용할 Git 사용자 이메일과 이름을 설정한다. 이메일을 세상에 단 한가지만 존재할 수 있기때문에 효과적인 Identification 기호이다. 해당 설정을 바꾸면 git을 통해서 ..
Documentation 작성법 ; Swagger, Javadocs API Dcoumentation 작성목적 : 프론트엔드 개발자와 동료 백엔드 개발자에게 내가 생성한 API가 어떻게 동작하는지 설명함. 문서화방식 :  txt파일로 생성시에, 최신화 및 문서버전관리가 어려워 swagger 등 와 같은 전용툴을 사용함. SwaggerSwagger는 RESTful API 문서를 자동으로 생성해주는 오픈소스 툴입니다. API 개발자와 클라이언트(프론트엔드, 모바일 개발자) 간의 API 명세 공유 및 테스트를 쉽게 할 수 있도록 도와줍니다. Url형식으로 배포해주기 때문에 공유에 유리함API 요청/응답 데이터 확인 가능API 명세서(Documentation) 자동 생성 Swagger에서 추가적으로 설정할 수 있는 것들✅ API 기본 정보 (@OpenAPIDefinition, @..