c3re-website/Makefile

24 lines
622 B
Makefile
Raw Normal View History

2024-01-18 14:33:52 +01:00
.PHONY: build minify clean release deploy_test
BASEURL ?= https://c3re.de
2024-01-18 14:33:52 +01:00
release: build minify
build: clean
hugo --gc --minify --cleanDestinationDir -b "${BASEURL}" --enableGitInfo --panicOnWarning
2024-01-18 14:33:52 +01:00
clean:
rm -rf public dist
minify: dist build
minify -a -r -o dist/ public/. -q --exclude "public/js/jquery-3.7.1.min.js" --html-keep-document-tags
2024-01-18 14:33:52 +01:00
cp -rp public/js/jquery-3.7.1.min.js dist/public/js/jquery-3.7.1.min.js
mv dist/public/* dist/
rm -rf dist/public
dist:
mkdir dist
deploy_test:
make BASEURL=https://c3retest.shnbk.de release
2024-01-18 14:33:52 +01:00
rsync -rv --delete dist/* shnbk.de:domains/c3retest.shnbk.de/htdocs