Welcome
欢迎来到兰州大学开源社区网站。
关于本站主题:Icarus
关于本站框架:Hexo
在GitHub Pages 上部署 Icarus
本地部署
在本地建立hexo文件夹,安装以下应用程序:
Node.js (Node.js 版本需不低于 10.13,建议使用 Node.js 12.0 及以上版本)
Git
执行如下命令:
1 | npm install hexo |
添加Hexo 所在的目录下的 node_modules 添加到环境变量之中
在想要建立hexo的
1 | hexo init <folder> |
在 Hexo 根目录执行以下命令安装主题,有两种方式:
1 | npm npm install -S hexo-theme-icarus hexo-renderer-inferno |
在 Hexo 根目录的 _config.yml 文件中,将 theme 值修改为 Icarus:
1 | theme: icarus |
或执行命令:
1 | hexo config theme icarus |
添加新页:
1 | hexo new page |
启动hexo服务器,访问 localhost:4000 查看效果:
1 | hexo server |
推送
建立存储库,名为 <你的 GitHub 用户名>.github.io
将 main 分支 push 到 GitHub仓库:
1 | git push -u origin main |
或者使用GitHub Desktop等工具进行推送。
使用 node –version 指令检查你电脑上的 Node.js 版本,并记下该版本 (例如:v18.16.0)
在储存库中前往 Settings > Pages > Source,并将 Source 改为 GitHub Actions。
在储存库中建立 .github/workflows/pages.yml,并填入以下内容:
1 | name: Pages |
检查 https://<你的 GitHub 用户名>.github.io 是否已经部署成功。
RSS
在 Hexo 根目录执行以下命令安装插件:
1 | npm install hexo-generator-feed --save |
在 Hexo 根目录的 _config.yml 文件中,添加以下内容:
1 | feed: |
在 _config.icarus.yml 文件中,找到RSS配置并修改为以下形式:
1 | RSS: |