mirror of
https://github.com/p4gefau1t/trojan-go.git
synced 2024-04-21 12:21:34 +00:00
20 lines
413 B
Makefile
20 lines
413 B
Makefile
.PHONY: default clean hugo hugo-build
|
|
|
|
default: hugo
|
|
|
|
clean:
|
|
rm -rf public/
|
|
|
|
hugo-build: clean hugo-themes
|
|
hugo --enableGitInfo --source .
|
|
|
|
hugo:
|
|
hugo server --disableFastRender --enableGitInfo --watch --source .
|
|
# hugo server -D
|
|
|
|
hugo-themes:
|
|
rm -rf themes
|
|
mkdir themes
|
|
git clone --depth=1 https://github.com/llc1123/hugo-theme-techdoc.git themes/hugo-theme-techdoc
|
|
rm -rf themes/hugo-theme-techdoc/.git
|