intake/Makefile

23 lines
881 B
Makefile

.PHONY: help serve test-data intake-sources demo
ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
help: ## display this help
@awk 'BEGIN{FS = ":.*##"; printf "\033[1m\nUsage\n \033[1;92m make\033[0;36m <target>\033[0m\n"} /^[a-zA-Z0-9_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } ' $(MAKEFILE_LIST)
serve: ## Run "intake serve" with live reload
@air \
-build.cmd "go build -o ${ROOT_DIR}/tmp/intake" \
-build.bin ${ROOT_DIR}/tmp/intake \
-build.args_bin serve \
-build.include_ext "go,html,css"
test-data: ## Recreate test data in tmp/
@test/test_items.sh
intake-sources: ## Nix build intake-sources into tmp/
@nix build git+https://git.alogoulogoi.com/Jaculabilis/intake-sources.git#default --out-link ${ROOT_DIR}/tmp/intake-sources
demo: ## Run the demo vm
@nix run ".#nixosConfigurations.demo.config.system.build.nixos-shell"