Skip to content

Commit

Permalink
Merge branch 'improvement.readme.docs' into 'main'
Browse files Browse the repository at this point in the history
Update README

See merge request flexi/codes/relexi!15
  • Loading branch information
m-kurz committed May 14, 2024
2 parents 4532a9f + 22691f8 commit dc63c42
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,25 @@ For details on its scaling behavior, suitability for HPC and for use cases, plea
This is a scientific project.
If you use Relexi or find it helpful, please cite the project using a suitable reference from the list above referring to either the general Relexi project, its HPC aspects or its application for scientific modeling tasks, respectively.

# Documentation

The documentation of Relexi is built via `pdoc`, which can be installed via `pip install pdoc`.
Next, change into the `docs` folder and build the documentation via
```
cd docs
bash build_docs.sh
```
Open the resulting `relexi.html` with your browser.

# Testing

A suite of unit tests are implemented for Relexi using the `pytest` testing environment.
To run the tests, simply execute in the root directory
```
pytest
```


# Installation

The following quick start details a standard installation of the Relexi framework.
Expand Down
2 changes: 1 addition & 1 deletion docs/build_docs.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
!/usr/bin/env bash
pdoc -d google -o . ../src/relexi
pdoc -d google -o . ../src/relexi --logo "https://numericsresearchgroup.org/images/icons/relexi.svg" --favicon "https://numericsresearchgroup.org/images/icons/icon.png"

0 comments on commit dc63c42

Please sign in to comment.