www

website
git clone ssh://anon@src.dalliard.ch/www
log | files | refs

commit 693c80563bfdbd4318607a87ddecf5d021d1f11f
parent e128fe3d2995ab7cb91f13eb7a94afb3b0b3b9fe
author: nathanael <nathanael@dalliard.ch>
date:   Tue,  9 Sep 2025 14:55:34 +0000

add deploy to makefile

diffstat:
MMakefile | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,2 +1,12 @@ +deploy: build sync + +build: + @hugo + +sync: + @openrsync --rsync-path=openrsync -rv --del public/ s1:/var/www/www/ + serve: hugo server --buildDrafts --navigateToChanged + +.PHONY: deploy build sync serve