openremise.github.io contains the source code for the OpenRemise website. It serves as the public landing page and information hub for the OpenRemise project, providing an introduction, a getting started guide and links to further documentation.
Table of Contents
- Uniform look for landing page and project documentation
- Modern look despite Doxygen due to Doxygen Awesome
- No ads, no tracking or other B$
The website gets published automatically with each push to the master branch through the docs workflow. However, it is also possible to build the site locally if the prerequisites are installed.
cmake --preset "Release"
cmake --build build --parallel --target OpenRemiseDocsIf the build was successful, the website can be viewed simply with a browser by opening build/docs/html/index.html or by creating a small web server.
python -m http.server --directory build/docs/html --bind 127.0.0.1