mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
* 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
13 lines
267 B
Makefile
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
|