Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@strongjz
Created July 20, 2019 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save strongjz/d703c05a0a79823ecf8b77529dbbf7b7 to your computer and use it in GitHub Desktop.
Save strongjz/d703c05a0a79823ecf8b77529dbbf7b7 to your computer and use it in GitHub Desktop.
Hugo makefile
DOCKER = docker
HUGO_VERSION = 0.49
DOCKER_IMAGE = k8-hugo
DOCKER_RUN = $(DOCKER) run --rm --interactive --tty --volume $(PWD):/src
.PHONY: all build build-preview serve docker-all
all: build ## Build site with production settings
build: ## Build site with production settings
hugo
build-preview: ## Build site with drafts and future posts enabled
hugo -D -F
production-build: build
non-production-build: ## Build the non-production site, which adds noindex headers to prevent indexing
hugo --enableGitInfo
serve: ## Boot the development server.
hugo server --ignoreCache --disableFastRender
docker-all: docker-image docker-build docker-serve
docker-image:
$(DOCKER) build . --tag $(DOCKER_IMAGE) --build-arg HUGO_VERSION=$(HUGO_VERSION)
docker-build:
$(DOCKER_RUN) $(DOCKER_IMAGE) hugo
docker-serve:
$(DOCKER_RUN) -p 1313:1313 $(DOCKER_IMAGE) hugo server --watch --bind 0.0.0.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment