11 lines
332 B
Makefile
11 lines
332 B
Makefile
RSYNC = rsync -aPh --stats
|
|
|
|
LOCAL_PATH = target
|
|
DEPLOY_PATH = /srv/causa_arcana_archivebox
|
|
|
|
DEPLOY_SSH_HOST = alpha.causa-arcana.com
|
|
DEPLOY_SSH_PORT = 57393
|
|
DEPLOY_SSH_USER = kotovalexarian
|
|
|
|
deploy:
|
|
$(RSYNC) --del --copy-links -e 'ssh -p $(DEPLOY_SSH_PORT)' '$(LOCAL_PATH)/' '$(DEPLOY_SSH_USER)@$(DEPLOY_SSH_HOST):$(DEPLOY_PATH)/'
|