improve output formatting

This commit is contained in:
2024-07-05 04:11:54 -07:00
parent 6c01071f04
commit fe3729eef7
3 changed files with 37 additions and 28 deletions

View File

@@ -8,6 +8,9 @@ endif
## ------------------ docs ------------------ ##
docs-publish:
scp -r docs/_build/html/* hetz-cloud:/var/www/doc.olog.io/symconf/
docs-serve:
cd docs/_build/html && python -m http.server 9091
@@ -19,23 +22,18 @@ docs-clean:
make -C docs/ clean
rm -rf docs/_autoref
rm -rf docs/_autosummary
## ------------------------------------------ ##
## ------------------ sync ------------------ ##
sync:
$(BASH) autoconf/sync.sh
## ----------------- tests ------------------ ##
test:
pytest --pyargs tests -v
## ------------------------------------------ ##
## ----------------- build ------------------ ##
build:
python -m build
## ----------------- themes ----------------- ##
gen-tone4:
$(PYTHON) autoconf/gen_theme.py -a kitty -p tone4
set-tone4-light:
$(PYTHON) autoconf/set_theme.py -p tone4 -s light -a "*"
set-tone4-dark:
$(PYTHON) autoconf/set_theme.py -p tone4 -s dark -a "*"
publish:
python -m twine upload dist/*
## ------------------------------------------ ##