You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
228 B
Makefile

5 years ago
DEST := /var/www/staticwebapp__5
REMOTE := vps.decentral1.se
RSYNC := rsync -chavzP
5 years ago
SRC := dist/*
SSH := ssh -t
BUILD := npm run build
5 years ago
all: publish
5 years ago
build:
$(BUILD)
publish: build
$(RSYNC) $(SRC) $(REMOTE):$(DEST)