all: build start: @nix-shell --command "tmuxinator local" stop: @tmux kill-session -t personalPage clean: @stack exec personalPage clean > /dev/null 2>&1 || true @stack clean > /dev/null install: @stack setup build: @stack build @stack exec personalPage build watch: @nodemon --watch src -e hs --exec 'make watch-command --silent' watch-command: @(killall personalPage || :) && sleep 1 && stack build && stack exec personalPage clean && stack exec personalPage watch