feat(val-blog): scaffold containerized Hugo dev flow with compose and starter content

This commit is contained in:
Chen Gu
2026-08-13 17:00:21 +08:00
parent 95f2c06955
commit 2c9f4cbf67
15 changed files with 1272 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
# Val Blog 容器化开发 Runbook
## 启动
```bash
cd org/cases/val_blog
docker compose up -d --build
```
## 访问
- http://localhost:1313
## 停止
```bash
docker compose down
```
## 新建旅程文章
```bash
cd org/cases/val_blog/site
# 手工创建 markdown 到 content/journey/
```