Add remote deployment option
From outside my network, I should route through the jump host.
This commit is contained in:
parent
1e3b67ebdd
commit
e39c23a102
1 changed files with 4 additions and 0 deletions
4
Makefile
4
Makefile
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue