Files
json/docs/mkdocs/Makefile

46 lines
1.2 KiB
Makefile
Raw Normal View History

2020-05-24 13:40:43 +02:00
# serve the site locally
serve: style_check
2020-05-24 13:03:04 +02:00
venv/bin/mkdocs serve
serve_dirty: style_check
venv/bin/mkdocs serve --dirtyreload
# This target is used in the CI (ci_test_build_documentation).
# This target is used by the docset Makefile.
build: style_check
2020-08-13 13:35:05 +02:00
venv/bin/mkdocs build
style_check:
@cd docs ; ../venv/bin/python3 ../scripts/check_structure.py
2020-05-24 13:03:04 +02:00
# check the links in the documentation files in docs/mkdocs
link_check:
ENABLED_HTMLPROOFER=true venv/bin/mkdocs build
2020-05-24 13:40:43 +02:00
# check the links in all other Markdown files
link_check_markdowns:
npx markdown-link-check --progress --alive 200,429 ../../README.md ../../FILES.md ../../.github/*.md
2023-11-01 22:16:27 +01:00
# publish site to GitHub pages (not working in GitHub Actions; need special action)
publish:
2020-05-24 13:03:04 +02:00
venv/bin/mkdocs gh-deploy --clean --force
2020-05-24 13:40:43 +02:00
# install a Python virtual environment
# This target is used by the docset Makefile.
2020-05-24 13:40:43 +02:00
install_venv: requirements.txt
2020-05-24 13:03:04 +02:00
python3 -mvenv venv
2022-08-05 23:09:55 +02:00
venv/bin/pip install --upgrade pip
2020-05-24 13:03:04 +02:00
venv/bin/pip install -r requirements.txt
2020-05-24 13:40:43 +02:00
# uninstall the virtual environment
uninstall_venv:
2020-05-24 13:03:04 +02:00
rm -fr venv
2024-12-09 23:02:30 +01:00
update_requirements:
rm -fr venv_small
python3 -mvenv venv_small
venv_small/bin/pip3 install pur
venv_small/bin/pur -r requirements.txt
rm -fr venv_small venv
make install_venv