diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cf6cf18 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +RSYNC_PATH ?= sudo -u nginx rsync +REMOTE ?= user@192.168.0.100:/var/www/html + +all: build + +build: + hugo build --minify + +deploy: build + rsync --rsync-path="$(RSYNC_PATH)" -avP --delete public/ $(REMOTE) + +serve: + hugo serve --disableFastRender |