Converted the website service project into a reusable template.

This commit is contained in:
2026-07-11 16:20:33 +02:00
parent a4906f8f26
commit 4a8413359f
12 changed files with 296 additions and 38 deletions
+13
View File
@@ -0,0 +1,13 @@
# Template root Makefile — bootstrap convenience only.
# This file is removed by `Tools/bootstrap` once the template is generated.
.DEFAULT_GOAL := help
.PHONY: bootstrap
bootstrap: ## Generate a concrete website from this template (interactive)
@./Scripts/bootstrap
.PHONY: help
help: ## Show available commands
@grep -hE '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
| awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-12s\033[0m %s\n", $$1, $$2}'