Personal website https://benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
217 B

  1. SERVER=lyra.benkurtovic.com
  2. STAGE=/usr/share/nginx/benkurtovic
  3. .PHONY: build serve deploy
  4. build:
  5. jekyll build
  6. serve:
  7. jekyll serve
  8. deploy: build
  9. rsync -chirvz --progress --delete-after _site/ $(SERVER):$(STAGE)