毕业准备用的静态学习站点,当前主线是 AI Infra 面试准备,内容源维护在 content/,页面由 tools/build_site.py 生成到仓库根目录的 index.html 和 pages/。
- GitHub Pages 访问链接:https://jinghao-coding.github.io/doctor-study/
- 论文模块示例:https://jinghao-coding.github.io/doctor-study/pages/ai-infra/papers/index.html
本项目已内置 GitHub Actions 自动发布配置:.github/workflows/pages.yml。
首次启用时建议检查:
- 打开 GitHub 仓库:
Settings - 进入:
Pages Build and deployment选择:GitHub Actions- 确认默认分支为
main - push 到
main后等待Deploy GitHub Pagesworkflow 完成
发布完成后,站点首页访问地址应为:
uv run python tools/build_site.py
uv run python -m http.server 8000本地预览:
- 优先编辑
content/,不要直接修改生成后的pages/**/*.html - 修改内容、模板或生成脚本后,重新运行
uv run python tools/build_site.py index.html和pages/是 GitHub Pages 展示依赖的生成产物,需要一并提交