diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,10 +4,12 @@ REMOTE ?= user@192.168.0.100:/var/www/html all: build build: - hugo build --minify + hugo --minify deploy: build rsync --rsync-path="$(RSYNC_PATH)" -avP --delete public/ $(REMOTE) serve: hugo serve --disableFastRender + +.PHONY: all build deploy serve |