This repo contains the top-level pages for acoular.org, currently the Home Page and Contribute section.
- shared Sphinx config is made in
acoular-sphinxin theacoular/cirepo - the organization webpage is deployed from
gh-pagesbranch of this repo - package documentations are built in the package CI and deployed to
acoular.org/<package>/by a push to thegh-pageshere
uv run make -C docs htmlThe output is written to docs/_build/html.
To preview the site locally, serve the built HTML with Python's built-in web server:
python3 -m http.server 8000 --directory docs/_build/htmlThen open http://localhost:8000/ in your browser.