17 lines
338 B
Makefile
17 lines
338 B
Makefile
.PHONY: build exif_clean dev clean deploy
|
|
|
|
build: exif_clean
|
|
hugo
|
|
|
|
exif_clean:
|
|
exiftool -r -overwrite_original -all= -tagsFromFile @ -Orientation -Canon -AllDates content/
|
|
|
|
dev:
|
|
hugo server
|
|
|
|
clean:
|
|
git clean -fdX
|
|
|
|
deploy: build
|
|
rsync -e 'ssh -J root@100.64.0.1' -cdr --progress --delete-after public/ root@100.64.0.3:/var/www/photos
|