[實作] Hexo Blog 架設
1. 安裝
終端機輸入 :
$ npm install hexo-cli -g
$ hexo init blog
$ cd blog
$ npm install
$ hexo server
or$ hexo s
2. 放置文章
$ cd blog\source\_posts
- 在此新增文章 ( 為 Markdown 語法 )
3. 更換主題
$ cd blog\themes
- 在此放置主題
- 主題庫 每個裡面都有介紹如何使用
4. 佈署上 Git hub
編輯
_config.yml
1
2deploy:
type: git安裝 hexo-deployer-git
1
$ npm install hexo-deployer-git --save
修改
_config.yml
1
2
3
4deploy:
type: git
repo: <repository url> //儲存庫(Repository)網址
branch: [branch] //分支名稱,建議新增一個 branch : gh-pages,master 放程式碼1
2url: https://<your name>.github.io/<your repository name>/
root: /<your repository name>/終端機輸入
hexo d -g