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

Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick Start Create a new post 1 $ hexo new "My New Post" More info: Writing Run server 1 $ hexo s
Read More