Hexo釋出管理工具

秋玻發表於2024-03-28

hexo-commander

在本地使用hexo,往往需要多次開啟使用命令列工具重複輸入命令。
雖然有個hexo-admin專案可以方便使用,然而該專案已經不再維護,並且為web頁面,在本地使用不如桌面軟體方便。
因此用qt寫了這個工具方便編輯釋出文章到hexo部落格。

原始碼:
https://github.com/weloe/hexo-commander

exe: hexo-commander/release/hexo-commander.exe at master · weloe/hexo-commander (github.com)

整合命令

建立文章,開啟文章

靜態檔案清理

靜態檔案生成

本地啟動server

一鍵部署

使用前提

hexo, hexo-deployer-git
在config裡配置了一鍵部署的引數。
詳細配置可前往hexo官網檢視。

配置

首先配置hexo.cmd路徑,工作目錄,post目錄,模板目錄等引數。

使用

配置完路徑後直接開啟exe使用即可。

按鈕-命令對應關係

new - hexo new {scaffold} {name}

open - 點選new建立文章時自動開啟md檔案

clean - hexo clean

generate - hexo generate

server - hexo clean&hexo generate&hexo s

deploy - hexo deploy

clean_deploy - hexo clean&hexo deploy

相關文章