mirror of
https://github.com/coredns/coredns.io.git
synced 2024-04-21 12:32:00 +00:00
This only touches the meta data on the website; does not touch the content; either in separate commit or PR.
15 lines
248 B
Makefile
15 lines
248 B
Makefile
all:
|
|
hugo -d /opt/www/coredns.io
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf /opt/www/coredns.io/*
|
|
|
|
.PHONY: test
|
|
test:
|
|
hugo server
|
|
|
|
.PHONY: sync-from-coredns
|
|
sync-from-coredns:
|
|
( cd bin; ./sync-from-coredns.py $$GOPATH/src/github.com/coredns/coredns/plugin )
|