Hexo 시작하기

준비하기 * 구름IDE 가입 * github 가입 구름IDE 컨테이너 만들기 * 로그인 * 대시보드 -> 새 컨테이너 생성 * 소프트웨어 스택 ‘Node.js’ 선택 hexo 설치 1 2 3 4 5 6 $ npm install -g npm // npm 버전 업그레이드 $ npm install hexo-cli -g $ hexo init hexoblog $ cd hexoblog $ npm install hexo 테마 다운로드 1 2 $ cd themes $ git clone [원하는 테마의 github 링크]
Read More