diff --git a/v2/Justfile b/v2/Justfile new file mode 100644 index 0000000..55a1967 --- /dev/null +++ b/v2/Justfile @@ -0,0 +1,10 @@ +default: + @just --list + +# rsync to production +deploy: build + rsync -avzhP --delete public/ hardforze.binarytrance.com:infrastructure/volumes/www/wezm.net/v2/ + +# build with zola +build: + zola build diff --git a/v2/Makefile b/v2/Makefile deleted file mode 100644 index 438d0d7..0000000 --- a/v2/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -all: - @echo "Available targets:" - @echo "- deploy" - -deploy: - zola build - rsync -avzhP --delete public/ hardforze.binarytrance.com:infrastructure/volumes/www/wezm.net/v2/