Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile - github.com/queensferryme/hugo-theme-texify.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d926f9ae53eca317cc34f0521a6505d4823aa87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
build:
	if [ ! -d "../hugo-theme-texify" ]; then \
		git clone https://github.com/queensferryme/hugo-theme-texify.git \
		../hugo-theme-texify; \
	fi
	hugo \
	--config="exampleSite/config.toml" \
	--contentDir="exampleSite/content" \
	--gc \
	--minify \
	--themesDir=".."

dev:
	hugo server \
	--buildDrafts \
	--config="exampleSite/config.toml" \
	--contentDir="exampleSite/content" \
	--disableFastRender \
	--themesDir=".."