mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
hugow is a platform independent wrapper for hugo binary and it removes the need to actually have the correct binary installed, rather than controlling the required version through a version file checked in the repo.
11 lines
232 B
Makefile
11 lines
232 B
Makefile
.PHONY: demo clean
|
|
|
|
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 && ./hugow serve -D
|
|
|
|
clean:
|
|
rm -rf demo
|