Skip to content

Commit 61506a0

Browse files
Update doc. Add gh-pages action.
1 parent 96a945c commit 61506a0

13 files changed

+34
-31
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: documentation
2+
3+
on: [push, pull_request, workflow_dispatch]
4+
5+
permissions:
6+
contents: write
7+
8+
jobs:
9+
docs:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v5
14+
- name: Install dependencies
15+
run: |
16+
pip install sphinx sphinx_rtd_theme sphinx-tabs sphinx_copybutton myst_parser numpy peewee
17+
- name: Sphinx build
18+
run: |
19+
sphinx-build docs/src docs/build
20+
- name: Deploy to GitHub Pages
21+
uses: peaceiris/actions-gh-pages@v3
22+
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
23+
with:
24+
publish_branch: gh-pages
25+
github_token: ${{ secrets.GITHUB_TOKEN }}
26+
publish_dir: docs/build/
27+
force_orphan: true

README.md

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,12 @@
33
![logo](docs/src/_static/images/logo.svg)
44

55
The **SSD** project provides Python3 tools to easily develop a **storage** management system for **any synthetic data**
6-
from **numerical simulations** with a minimal lines of code.
6+
from **numerical simulations** on runtime with a minimal lines of code.
77

88
The project is mainly using the [Peewee](http://docs.peewee-orm.com/en/latest/) Python3 library and was mostly designed
99
to fit the [**DeepPhysX**](https://github.com/mimesis-inria/DeepPhysX) and [**SOFA**](https://www.sofa-framework.org/)
1010
frameworks.
1111

12-
Discover more about the project on the dedicated
13-
[**Documentation**](https://simulationsimpledatabase.readthedocs.io/en/latest/).
14-
15-
16-
## Gallery
17-
18-
| **examples/SOFA/rendering-offscreen/replay.py** |
19-
|:---------------------------------------------------------:|
20-
| ![caduceus](docs/src/_static/images/gallery_caduceus.png) |
21-
22-
| **examples/SOFA/rendering/replay.py** |
23-
|:---------------------------------------------------:|
24-
| ![liver](docs/src/_static/images/gallery_liver.png) |
25-
2612

2713
## Features
2814

@@ -49,3 +35,8 @@ $ git clone https://github.com/mimesis-inria/SimulationSimpleDatabase.git
4935
$ cd SimRender
5036
$ pip install -e .
5137
```
38+
39+
40+
## Documentation
41+
42+
See more ⟶ [**documentation**](https://mimesis-inria.github.io/SimulationSimpleDatabase/)

docs/src/_static/images/about.png

53.1 KB
Loading
-345 KB
Binary file not shown.
-601 KB
Binary file not shown.
-205 KB
Binary file not shown.
-44.1 KB
Binary file not shown.
-362 KB
Binary file not shown.
-225 KB
Binary file not shown.
-745 KB
Binary file not shown.

0 commit comments

Comments
 (0)