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
+9
View File
@@ -0,0 +1,9 @@
services:
val-blog:
build: .
container_name: val-blog-dev
ports:
- "1313:1313"
volumes:
- ./site:/site
command: ["server", "-D", "--bind", "0.0.0.0", "--baseURL", "http://localhost:1313"]