~dricottone/blog

ref: 5e6902d67d0b396a3f5a690095966de122d7a4d8 blog/Makefile -rw-r--r-- 369 bytes
5e6902d6Dominic Ricottone Correct hierarchy of headers in CV 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
TARGET_USER=deploy
TARGET_HOST=deploy-aws2

.PHONY: dev
dev:
	hugo server --buildDrafts --bind 127.0.0.1 --port 8080

.PHONY: build
build: clean
	hugo

.PHONY: sync
sync: build
	rsync --recursive --links --compress --delete \
		--chown=$(TARGET_USER):$(TARGET_USER) \
		public/ $(TARGET_HOST):/var/deploy/webroot/

.PHONY: clean
clean:
	rm -rf public resources themes