mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
11 lines
230 B
Makefile
11 lines
230 B
Makefile
.PHONY: demo clear
|
|
|
|
demo:
|
|
mkdir -p demo/themes/hugo-coder
|
|
rsync -av exampleSite/* demo
|
|
rsync -av --exclude='demo' --exclude='exampleSite' --exclude='.git' . demo/themes/hugo-coder
|
|
cd demo && hugo serve -D
|
|
|
|
clean:
|
|
rm -rf demo
|