diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6f5875e --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +build: + hugo build + +publish: build + rsync -rz public/ samanthony.xyz:/var/www/htdocs/samanthony.xyz/ + +serve: + hugo serve -DEF + +clean: + rm -rf public |