diff options
author | frosty <passedgoandgot200@disroot.org> | 2025-05-19 08:48:52 -0400 |
---|---|---|
committer | frosty <passedgoandgot200@disroot.org> | 2025-05-19 08:48:52 -0400 |
commit | 24897b4ec55af3f21ce690783b9ca62c51f2ee67 (patch) | |
tree | 827232f612a72f267a1bebc08912acf7901b281e /Makefile |
initial commit
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 |