all: build start: @nix-shell --command "tmuxinator local" stop: @nix-shell --command "tmux kill-session -t personalPage" clean: @cabal new-clean > /dev/null watch: @nodemon --watch src/ application.conf ./data.yaml resume/ --ext hs,conf,yaml,cls --exec 'clear && make build-and-launch-server --silent' build-and-launch-server: @(pkill personalPage || true) && (cabal new-run || true) .PHONY: build build: @cabal new-build || true