tasiaiso.vulpecula.zone/Makefile
2024-05-26 19:26:27 +02:00

24 lines
426 B
Makefile

# Build the website
build:
mkdocs build
# Serve the website at http://127.0.0.1:8000/~tasiaiso/
serve:
mkdocs serve -w theme
format: format-code format-markdown
format-code:
npx prettier --cache --write --check .
format-markdown:
npx markdownlint-cli 'docs/**/*.md' -f
# Upload the website to tilde.club
upload: build
scp -r site/** tasiaiso@tilde.club:/home/tasiaiso/public_html
.PHONY: clean
clean:
rm -r site/