aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 1227fb2165a3628af0560002403f785a60549d37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
DOMAIN=migalmoreno.com
.PHONY: publish

build:
	haunt build

serve:
	haunt serve --watch

publish:
	haunt build
	rsync -P -rvz --delete site/ cygnus:/srv/http/${DOMAIN} --cvs-exclude

repl:
	guix shell guile-next guix guile-ares-rs -- guile -L . \
	-c "((@ (nrepl server) run-nrepl-server) #:port 7888)"