Add remote deployment option

From outside my network, I should route through the jump host.
This commit is contained in:
Chandler Swift 2026-03-08 20:08:33 -05:00
parent 1e3b67ebdd
commit e39c23a102
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F

View file

@ -2,6 +2,10 @@
deploy: build deploy: build
rsync --archive --verbose --delete dist/ root@bert:/srv/www/maps.chandlerswift.com/ rsync --archive --verbose --delete dist/ root@bert:/srv/www/maps.chandlerswift.com/
.PHONY: deploy-remote
deploy-remote: build
rsync --archive --verbose --delete dist/ root@bert-jump:/srv/www/maps.chandlerswift.com/
.PHONY: clean .PHONY: clean
clean: clean:
rm -r dist rm -r dist