Skip to content
README.md 1.45 KiB
Newer Older
Ann Almgren's avatar
Ann Almgren committed
# MFIX-Exa
Justin Weber's avatar
Justin Weber committed
This is the public face of the MFiX-Exa project, hosting the documentation,
gallery of results, etc. The website is: https://amrex-codes.github.io/MFIX-Exa/
Ann Almgren's avatar
Ann Almgren committed

Justin Weber's avatar
Justin Weber committed
## Editing
Ann Almgren's avatar
Ann Almgren committed

Justin Weber's avatar
Justin Weber committed
The documentation source is in `docs/source/` and the html source for the cover
page is in `docs/webroot/`.
Justin Weber's avatar
Justin Weber committed
:warning: **Do not push any edits to the `gh-pages` branch** as these will be
overwritten. Instead, commit your changes to the `master` branch, and the
`gh-pages` branch will be updated automatically a few minutes later.

### Documentation

The documentation is built using
[sphinx](https://www.sphinx-doc.org/en/master/). The `docs/source/config.py`
file contains the settings for building this documentation. The documentation
can be built locally by:

1. Install sphinx:

```shell
> pip install sphinx sphinx_rtd_theme sphinx-tabs
Justin Weber's avatar
Justin Weber committed
```

2. Build the documentation:

```shell
> mkdir build
> sphinx-build -b html docs/source_docs/ build
Justin Weber's avatar
Justin Weber committed
```

The HTML pages will now be located in the `build` directory. Open the
`index.html` with your favorite browser:
Justin Weber's avatar
Justin Weber committed
```shell
> firefox build/index.html
```

### Doxygen

Whenever the online documentation is updated, a fresh doxygen will be generated
also. Note that the configuration in `docs/doxygen/doxygen.conf` specifically
prevent source code from being displayed. This is by design. If you want to
create your own private doxygen containing the source code also, please
configure and run the `doc/Doxyfile.in` in your clone of the MFiX-Exa repo.