/
githubmirror
/
json
Обзор
Документация
Войти
/
githubmirror
/
json
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v3.10.5
doc/mkdocs/Makefile
33 строки
768 B
Niels Lohmann
Consolidate documentation (#3071)
29 дек 2021, 15:41
Не верифицирован
29 дек 2021, 15:41
29cd970
Код
Авторство
О чём код?
# serve the site locally serve: prepare_files venv/bin/mkdocs serve build: prepare_files venv/bin/mkdocs build # create files that are not versioned inside the mkdocs folder prepare_files: clean # create subfolders mkdir docs/examples # copy images cp -vr ../json.gif docs/images # copy examples cp -vr ../examples/*.cpp ../examples/*.output docs/examples # clean subfolders clean: rm -fr docs/images/json.gif docs/examples # publish site to GitHub pages publish: prepare_files venv/bin/mkdocs gh-deploy --clean --force # install a Python virtual environment install_venv: requirements.txt python3 -mvenv venv venv/bin/pip install wheel venv/bin/pip install -r requirements.txt # uninstall the virtual environment uninstall_venv: clean rm -fr venv