goodwatch/website/Makefile

17 lines
250 B
Makefile

all: build
theme:
mkdir -p themes
cd themes && ls hugo_theme_robust || git clone https://github.com/dim0627/hugo_theme_robust.git
build: theme
hugo
server: theme
hugo server
deploy: build
cp -rf public/* /var/www/html/
clean:
rm -rf public