Static placeholder site for TAI
This commit is contained in:
commit
1bd6b674bc
8 changed files with 112 additions and 0 deletions
17
Makefile
Normal file
17
Makefile
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
serve:
|
||||
hugo server -D -E -F
|
||||
|
||||
# --minify: works on the final HTML output, not any (CSS, JS) assets
|
||||
# see https://gohugo.io/hugo-pipes/bundling/ for the latter
|
||||
# Note: as of mid 2021, '--minify' produces broken HTML. Disabled for now.
|
||||
build: clean
|
||||
hugo
|
||||
|
||||
# requires: source .env
|
||||
deploy: build
|
||||
rsync -axv --delete --ignore-errors --exclude .DS_Store --exclude .git public/ $(SR_DEPLOY_TARGET)
|
||||
|
||||
clean:
|
||||
rm -rf public
|
||||
|
||||
.PHONY: serve clean
|
||||
Loading…
Add table
Add a link
Reference in a new issue