Hexo 처음 포스트하기

Hexo를 시작한 것을 환영합니다! 더 많은 정보를 원하신다면 documentation를 확인해보세요 . Hexo를 사용하실때 불편함을 느끼셨다면, troubleshooting 여기에서 답을 찾을 수 있어요 아니면 GitHub을 통해 질문해주세요.

Quick Start 빠른 시작

Create a new post 새로운 포스트 만들기

1
$ hexo new "My New Post"

More info: Writing

Run server 서버 시작하기

1
$ hexo server

More info: Server

Generate static files 정적인 파일들 생성하기

1
$ hexo generate

More info: Generating

Deploy to remote sites 원격 사이트들 배포하기

1
$ hexo deploy

Generate와 Deploy 동시실행

아래와 같이 Generate와 Deploy를 동시실행 할 수도 있습니다.

1
2
3
4
5
hexo deploy --generate  #Deploy 전에 Generate를 해준다.
hexo d -g #단축 명령어

hexo generate --deploy #Generate 후에 Deploy를 해준다.
hexo g -d #단축 명령어

More info: Deployment

Share