Files
hugo-coder-timeline/Makefile
Codruț Constantin Gușoi 5e4e500cdf HTML/CSS only tabs (#678)
* Fix pre tag margin top so it looks good inside containers

* Bind to 0.0.0.0 for docker container support

* Add HTML only tabs shortcode
2022-05-29 15:43:09 -03:00

13 lines
267 B
Makefile

HUGO_BIN=hugo
.PHONY: build demo release
build:
$(HUGO_BIN) --themesDir=../.. --source=exampleSite
demo:
$(HUGO_BIN) server -D --themesDir=../.. --source=exampleSite --bind 0.0.0.0
release: build
rm -rf ./resources && cp -r ./exampleSite/resources ./resources