blob: 7303e82c36a5dc4abaa9eada77e29fd2fe76047d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Deploy options
RSYNC_PATH ?= sudo -u nginx rsync
REMOTE ?= user@192.168.0.100:/var/www/html
# Email options
EMAIL_ADDRESS ?= mail@example.net
EMAIL_FONT ?= Iosevka
EMAIL_COLOR ?= eeff11
all: build
build:
hugo --minify
deploy: build
rsync --rsync-path="$(RSYNC_PATH)" -avP --delete public/ "$(REMOTE)"
serve:
hugo serve --disableFastRender
email:
magick -background transparent -fill "#$(EMAIL_COLOR)" -font "$(EMAIL_FONT)" -size 220x60 -gravity center label:"$(EMAIL_ADDRESS)" -wave -15x150 ./static/img/text.png
.PHONY: all build deploy serve email
|