Skip to content

Instantly share code, notes, and snippets.

@AlbertVeli
Created June 22, 2024 18:25
Show Gist options
  • Save AlbertVeli/bd418e2fe13df57f6db151f2e5f64b29 to your computer and use it in GitHub Desktop.
Save AlbertVeli/bd418e2fe13df57f6db151f2e5f64b29 to your computer and use it in GitHub Desktop.
Deploy Makefile
SRC_DIR := .
# TODO: Change DEST_DIR and SERVER to match your site
DEST_DIR := /var/www/production
SERVER := user@production-server.com
HTML_FILES := $(wildcard $(SRC_DIR)/*.html)
PHP_FILES := $(wildcard $(SRC_DIR)/*.php)
FILES := $(HTML_FILES) $(PHP_FILES)
deploy:
scp $(FILES) $(SERVER):$(DEST_DIR)
.PHONY: deploy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment