Setting

[Setting | Windows 11] 개발환경 세팅

t-opendocs 2024. 12. 24. 01:53
반응형

윈도우 11에 개발환경 세팅절차를 정리한다.


> 작성일 : 2024-12-24
> OS : Windows 11 Pro (24H2)

 

<1> Git 설치

* 설치파일 다운로드
https://git-scm.com/downloads/win
64-bit Git for Windows Setup. Click!
* 설치 후 세팅
# 사용자 설정
git config --global user.email "opendocs@kakao.com"
git config --global user.name "Opendocs"
# 자동개행문자설정해제
git config --global core.autocrlf false
# 파일명 길이제한 해제
git config --global core.longpaths true
# 대소문자 구분설정
git config --global core.ignorecase false

 


 

<2> GitHub Repository Clone

git clone https://{계정id}@github.com/opendocs-corp/www-web.git

 


 

<3> VSCode 설치

* 설치파일 다운로드
https://code.visualstudio.com/download
Windows 10, 11. Click!
* 기존 설정값 연동 (<> GitHub 계정)

기존 GitHub 계정과 연동된 설정값이 동기화됨

File > Preferences > Settings
Backup and Sync Settings
Sign In Click!

 


 

<4> NodeJS 설치

* 설치파일 다운로드
https://nodejs.org/ko
Node.js다운로드 (LTS). Click!
현재시점 버전 22.12.0
* 파일을 실행하여 기본값으로 설치

 

반응형