-
Notifications
You must be signed in to change notification settings - Fork 25
Doc work and sandbox previews
John Kerl edited this page May 14, 2024
·
3 revisions
- As tracked on issue 1041, we will be transitioning content rendering to Quarto. Meanwhile, though, we can check rendering using
sphinx
(for Python) andpkgdown
(for R). - readthedocs sites:
- Content https://tiledbsoma.readthedocs.io/en/latest/
- Project home: https://readthedocs.org/projects/tiledbsoma/
- Admins as of 2024-05-14: @johnkerl @ryan-williams @ebezzei -- note John's readthedocs login is
johnkerl-tiledb
for this project
-
sphinx
instructions:-
cd
to the repo base (notapis/python
) - It won't pick up editable installs. Therefore after each sandbox edit you must do
pip uninstall -y tiledbsoma && pip install apis/python
- Run
doc/sandbox-gen.sh
- Open
doc/html/index.html
- (Or, use
docs/local-build.sh
) - Iterate
-
-
pkgdown
instructions:-
cd
toapis/r
(not the repo base) R CMD INSTALL --no-byte-compile --no-test-load --no-docs --no-html .
- Within R:
pkgdown::build_site()
- Open
docs/index.html
- Iterate
-