2022-09-28 23:08:00 -07:00
|
|
|
.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
|
2023-10-14 13:36:25 -07:00
|
|
|
hugo server -b localhost
|
|
|
|
|
|
|
|
docker-build: ## Builds the image
|
|
|
|
docker build -t cookbook .
|
|
|
|
|
|
|
|
docker-run: ## Runs the compiled image for debugging
|
|
|
|
docker run -p 1313:1313 cookbook
|