2020-06-10 10:28:48 +00:00
|
|
|
HUGO_VERSION = $(shell grep ^HUGO_VERSION netlify.toml | tail -n 1 | cut -d '=' -f 2 | tr -d " \"\n")
|
|
|
|
NODE_BIN = node_modules/.bin
|
|
|
|
NETLIFY_FUNC = $(NODE_BIN)/netlify-lambda
|
|
|
|
|
|
|
|
# The CONTAINER_ENGINE variable is used for specifying the container engine. By default 'docker' is used
|
|
|
|
# but this can be overridden when calling make, e.g.
|
2020-06-24 19:11:06 +00:00
|
|
|
# CONTAINER_ENGINE=podman make container-image
|
2020-06-10 10:28:48 +00:00
|
|
|
CONTAINER_ENGINE ?= docker
|
2020-07-20 06:53:40 +00:00
|
|
|
IMAGE_VERSION=$(shell scripts/hash-files.sh Dockerfile Makefile | cut -c 1-12)
|
|
|
|
CONTAINER_IMAGE = kubernetes-hugo:v$(HUGO_VERSION)-$(IMAGE_VERSION)
|
2020-06-10 10:28:48 +00:00
|
|
|
CONTAINER_RUN = $(CONTAINER_ENGINE) run --rm --interactive --tty --volume $(CURDIR):/src
|
|
|
|
|
|
|
|
CCRED=\033[0;31m
|
|
|
|
CCEND=\033[0m
|
2018-06-21 17:13:29 +00:00
|
|
|
|
2019-06-09 13:31:07 +00:00
|
|
|
.PHONY: all build build-preview help serve
|
2016-09-07 23:37:43 +00:00
|
|
|
|
|
|
|
help: ## Show this help.
|
|
|
|
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {sub("\\\\n",sprintf("\n%22c"," "), $$2);printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
|
|
|
|
|
2020-06-14 18:51:51 +00:00
|
|
|
module-check:
|
|
|
|
@git submodule status --recursive | awk '/^[+-]/ {printf "\033[31mWARNING\033[0m Submodule not initialized: \033[34m%s\033[0m\n",$$2}' 1>&2
|
|
|
|
|
2018-08-21 19:51:15 +00:00
|
|
|
all: build ## Build site with production settings and put deliverables in ./public
|
2016-09-07 23:37:43 +00:00
|
|
|
|
2020-06-14 18:51:51 +00:00
|
|
|
build: module-check ## Build site with production settings and put deliverables in ./public
|
2019-01-15 18:56:39 +00:00
|
|
|
hugo --minify
|
2016-09-07 23:37:43 +00:00
|
|
|
|
2020-06-14 18:51:51 +00:00
|
|
|
build-preview: module-check ## Build site with drafts and future posts enabled
|
2019-01-15 18:56:39 +00:00
|
|
|
hugo --buildDrafts --buildFuture
|
2016-09-07 23:37:43 +00:00
|
|
|
|
2020-02-11 19:28:07 +00:00
|
|
|
deploy-preview: ## Deploy preview site via netlify
|
2020-01-15 12:47:33 +00:00
|
|
|
hugo --enableGitInfo --buildFuture -b $(DEPLOY_PRIME_URL)
|
|
|
|
|
2018-10-03 20:04:39 +00:00
|
|
|
functions-build:
|
|
|
|
$(NETLIFY_FUNC) build functions-src
|
|
|
|
|
2018-08-21 19:51:15 +00:00
|
|
|
check-headers-file:
|
|
|
|
scripts/check-headers-file.sh
|
|
|
|
|
2020-02-11 19:28:07 +00:00
|
|
|
production-build: build check-headers-file ## Build the production site and ensure that noindex headers aren't added
|
2018-08-21 19:51:15 +00:00
|
|
|
|
2020-02-11 19:28:07 +00:00
|
|
|
non-production-build: ## Build the non-production site, which adds noindex headers to prevent indexing
|
2018-08-21 19:51:15 +00:00
|
|
|
hugo --enableGitInfo
|
|
|
|
|
2020-06-14 18:51:51 +00:00
|
|
|
serve: module-check ## Boot the development server.
|
2019-03-14 13:52:26 +00:00
|
|
|
hugo server --buildFuture
|
2017-08-06 04:11:12 +00:00
|
|
|
|
2018-06-21 17:13:29 +00:00
|
|
|
docker-image:
|
2020-06-10 10:28:48 +00:00
|
|
|
@echo -e "$(CCRED)**** The use of docker-image is deprecated. Use container-image instead. ****$(CCEND)"
|
|
|
|
$(MAKE) container-image
|
2018-06-21 17:13:29 +00:00
|
|
|
|
|
|
|
docker-build:
|
2020-06-10 10:28:48 +00:00
|
|
|
@echo -e "$(CCRED)**** The use of docker-build is deprecated. Use container-build instead. ****$(CCEND)"
|
|
|
|
$(MAKE) container-build
|
2018-06-21 17:13:29 +00:00
|
|
|
|
2018-07-27 17:33:57 +00:00
|
|
|
docker-serve:
|
2020-06-10 10:28:48 +00:00
|
|
|
@echo -e "$(CCRED)**** The use of docker-serve is deprecated. Use container-serve instead. ****$(CCEND)"
|
|
|
|
$(MAKE) container-serve
|
|
|
|
|
|
|
|
container-image:
|
|
|
|
$(CONTAINER_ENGINE) build . \
|
|
|
|
--network=host \
|
|
|
|
--tag $(CONTAINER_IMAGE) \
|
|
|
|
--build-arg HUGO_VERSION=$(HUGO_VERSION)
|
|
|
|
|
2020-06-14 18:51:51 +00:00
|
|
|
container-build: module-check
|
2020-07-01 21:12:21 +00:00
|
|
|
$(CONTAINER_RUN) $(CONTAINER_IMAGE) hugo --minify
|
2020-06-10 10:28:48 +00:00
|
|
|
|
2020-06-14 18:51:51 +00:00
|
|
|
container-serve: module-check
|
2020-10-03 03:10:33 +00:00
|
|
|
$(CONTAINER_RUN) --mount type=tmpfs,destination=/src/resources,tmpfs-mode=0777 -p 1313:1313 $(CONTAINER_IMAGE) hugo server --buildFuture --bind 0.0.0.0
|
2019-01-15 18:56:39 +00:00
|
|
|
|
2019-04-11 08:40:13 +00:00
|
|
|
test-examples:
|
|
|
|
scripts/test_examples.sh install
|
|
|
|
scripts/test_examples.sh run
|
2020-05-25 17:14:44 +00:00
|
|
|
|
|
|
|
.PHONY: link-checker-setup
|
|
|
|
link-checker-image-pull:
|
2020-06-10 10:28:48 +00:00
|
|
|
$(CONTAINER_ENGINE) pull wjdp/htmltest
|
|
|
|
|
|
|
|
docker-internal-linkcheck:
|
|
|
|
@echo -e "$(CCRED)**** The use of docker-internal-linkcheck is deprecated. Use container-internal-linkcheck instead. ****$(CCEND)"
|
|
|
|
$(MAKE) container-internal-linkcheck
|
|
|
|
|
|
|
|
container-internal-linkcheck: link-checker-image-pull
|
|
|
|
$(CONTAINER_RUN) $(CONTAINER_IMAGE) hugo --config config.toml,linkcheck-config.toml --buildFuture
|
|
|
|
$(CONTAINER_ENGINE) run --mount type=bind,source=$(CURDIR),target=/test --rm wjdp/htmltest htmltest
|