mykiwi/mykiwi.blogpublic Fork 0
a74fe0a
Commits
Clone
git clone https://git.rickub.com/mykiwi/mykiwi.blog.git
git clone ssh://git@rickub.com/mykiwi/mykiwi.blog.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Fix make serve to point Hugo at blog/

hugo.toml lives in blog/, but the recipe ran hugo server from the repo
root, so it couldn't find its config.
Romain Gautier committed 2026-09-18T19:56:57+02:00 Browse files
a74fe0a parent: e4c5d34
modified Makefile +1 -1
@@ -19,7 +19,7 @@ build: ## Build the site (all languages) into ./result
1919 nix build
2020
2121 serve: ## Run the Hugo dev server with live reload
22- nix develop --command hugo server
22+ nix develop --command hugo server --source blog
2323
2424 infra-plan: ## Show what infra-apply would change on Cloudflare
2525 nix run .#infra -- plan
@@ -19,7 +19,7 @@ build: ## Build the site (all languages) into ./result
19 nix build19 nix build
20 20
21 serve: ## Run the Hugo dev server with live reload21 serve: ## Run the Hugo dev server with live reload
22- nix develop --command hugo server22+ nix develop --command hugo server --source blog
23 23
24 infra-plan: ## Show what infra-apply would change on Cloudflare24 infra-plan: ## Show what infra-apply would change on Cloudflare
25 nix run .#infra -- plan25 nix run .#infra -- plan