You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Makefile
		
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Makefile
		
	
| #!Makefile
 | |
| 
 | |
| SHELL:=bash
 | |
| HUGO=hugo-extended
 | |
| BUILDNAME:=$(shell git rev-parse --abbrev-ref HEAD)
 | |
| BASEURL:=$(shell basename `pwd` | sed 's/_/./g')
 | |
| 
 | |
| default all: build
 | |
| 
 | |
| .PHONY: build
 | |
| build:
 | |
| 	$(HUGO) --environment=production --minify --templateMetrics
 | |
| 	@find public/ -name '*.html' ! -name '*.gz' -type f -exec sh -c "gzip -c -9 < {} > {}.gz" \;
 | |
| 	@find public/ -name '*.css' ! -name '*.gz' -type f -exec sh -c "gzip -c -9 < {} > {}.gz" \;
 | |
| 	@find public/ -name '*.js' ! -name '*.gz' -type f -exec sh -c "gzip -c -9 < {} > {}.gz" \;
 | |
| 
 | |
| .PHONY: build-staging
 | |
| build-staging:
 | |
| 	@rm -rf public/
 | |
| 	branches=$(git branch -r)
 | |
| 	for branch in $(branches); do
 | |
| 		if [ $(branch) != '->' ] && [ $(branch) != 'origin/HEAD' ] && [ $(branch) != 'origin/master' ] && [ $(branch) != 'origin/main' ]; then
 | |
| 			echo $(branch)
 | |
| 			branchname=$(basename $branch)
 | |
| 			git checkout $(branchname)
 | |
| 			
 | |
| 			$(HUGO) --environment=production --minify --templateMetrics --baseURL https://$(BASEURL)/$(branchname)/ --destination builds/$(branchname)
 | |
| 		fi
 | |
| 	done
 | |
| 
 | |
| .PHONY: test
 | |
| test: clean
 | |
| 	$(HUGO) --environment=development --minify
 | |
| 
 | |
| .PHONY: draft
 | |
| draft:
 | |
| 	$(HUGO) --environment=development --minify --buildDrafts --buildFuture --buildExpired
 | |
| 
 | |
| .PHONY: debug
 | |
| debug:
 | |
| 	$(HUGO) --debug
 | |
| 
 | |
| .PHONY: serve
 | |
| serve:
 | |
| 	$(HUGO) server --environment=development --port 1314 --noHTTPCache --disableFastRender --watch
 | |
| 
 | |
| .PHONY: servedraft
 | |
| servedraft:
 | |
| 	$(HUGO) server --environment=development --buildFuture --buildExpired --noHTTPCache --disableFastRender --watch
 | |
| 
 | |
| .PHONY: clean
 | |
| clean:
 | |
| 	@rm -rf public/
 | |
| 	@rm -rf resources/
 |