-
[M3 Mac] 개발환경 설정개발공부 2024. 11. 9. 23:53
1. 공통
- 맥북 설정 진행
- 컴퓨터 방화벽 on 설정
- 키보드 → 키 반복 빠르게로 변경
- 마우스 → 속도 빠르게로 변경
- finder 폴더 설정 (finder > 상단메뉴 > 설정 > 사이드바 설정 root 디렉토리 check)
2. 필수 프로그램 설치
- homebrew 설치 (m3 mac 기준 : 참고링크)
- 웹 애플리케이션 설치
brew install --cask google-chrome brew install --cask slack brew install --cask notion brew install --cask warp // AI 기능 내장 터미널 (iterm2 설정 대체) brew install --cask alfred // 내 맥북 자체 search 용도 (command + space spotlight 보다 더 많은 편의기능 제공) brew install --cask postman // api clinet brew install --cask chatgpt
2.1. 개발언어 설치
- Java 설치
- sdkman 설치 (https://yeoon.tistory.com/80)
- Java 설치 (correto 17, 21 설치)
- node 설치
- nvm으로 node lts 버전 설치 (https://yeoon.tistory.com/101)
2.2. IDE 설치 (feat. intelliJ tip 모음)
- toolbox 설치(https://www.jetbrains.com/toolbox-app/)
- toolbox로 intelliJ 설치
- intelliJ 설정
- 안쓰는 import 자동제거 설정, tab preview 설정 (참고 : https://yeoon.tistory.com/131)
- intelliJ cmd + shift + a 눌렀을때 터미널 켜지는 문제 해결 (https://jojoldu.tistory.com/420)
- 키보드 > 키보드 단축키... > 서비스 > 텍스트 > mac에서 man 페이지 인덱스 검색 비활성화
- IDE 컴팩트 모드로 변경 cmd + , Appearance > UI options compact 모드 체크
- intelliJ Plugin 설치 (참고 : https://yeoon.tistory.com/182)
- intelliJ Live Template 설정(참고 : https://yeoon.tistory.com/183)
- vscode 설치 (brew install --cask visual-studio-code)
2.3. DB, 인프라 관련 설치
- Docker 설치 (https://docs.docker.com/desktop/setup/install/mac-install/)
- DB Tool 디비버 설치 (brew install --cask dbeaver-community)
반응형'개발공부' 카테고리의 다른 글
회사에서 허락되는 리팩토링 (4) 2024.11.05 - 맥북 설정 진행