这是我的技术学习笔记仓库,使用 Hugo + Book 主题构建。
# 克隆仓库
git clone --recursive https://github.com/Zereker/my-learning-notes.git
cd my-learning-notes
# 安装 Hugo (如果未安装)
brew install hugo
# 启动开发服务器
hugo server -D
# 构建静态文件
hugocontent/
├── docs/
│ ├── programming/
│ │ └── go/ # Go 语言相关笔记
│ ├── system-design/ # 系统设计
│ ├── algorithms/ # 算法与数据结构
│ └── tools/ # 工具与技术
# 创建新的笔记文件
hugo new content/docs/programming/go/new-topic.md推送到 main 分支会自动触发 GitHub Pages 部署。
MIT License