# vuepress 블로그 세팅 가이드

🎉 노트북 포맷기념 수정 🎉

  1. 관리자 권한 powershell 에서 chocolatey 설치

     Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
    
    1
  2. VsCode, git, nvm 설치

    choco install vscode
    choco install git
    choco install nvm
    
    1
    2
    3
  3. 깃 이름, 이메일 설정

    git config --global user.name "leekyounghwa"
    git config --global user.email "rudghk5220@gmail.com"
    
    1
    2
  4. choco 사용 nvm 설치, node 16 설치

    nvm install 16
    nvm use 16.20.2
    
    1
    2
  5. VsCode 확장프로그램 Vue, Git Graph 설치

  6. git clone https://github.com/LEEKYOUNGHWA/LEEKYOUNGHWA.github.io.git

  7. 블로그 실행

    npm i
    npm run build
    npm run dev
    
    1
    2
    3

WARNING