6 lines
254 B
Makefile
6 lines
254 B
Makefile
|
.PHONY: help
|
||
|
help: ## Shows this help command
|
||
|
@egrep -h '\s##\s' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
|
||
|
|
||
|
dev: ## builds the application with the current go runtime
|
||
|
hugo server -b localhost
|