2024-05-22 15:40:30 +02:00
|
|
|
# Build the website
|
|
|
|
build:
|
2024-05-26 19:25:36 +02:00
|
|
|
mkdocs build
|
2024-05-22 15:40:30 +02:00
|
|
|
|
|
|
|
# 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/
|