Sources for the public SimScale SDK Tutorial.
The generated tutorial website can be found in the following address:
https://simscalegmbh.github.io/simscale-sdk-tutorial/
This project is developed using the Sphinx documentation tool.
In order to build the HTML locally, first setup your dev environment:
- Clone the repo and enter the folder
git clone https://github.com/SimScaleGmbH/simscale-sdk-tutorial.git
cd simscale-sdk-tutorial
- Create and activate a virtual environment, in this case using virtualenv
virtualenv venv
. venv/bin/activate
- Install the prerequisites
pip install -r requirements.txt
Now you are ready to build the MTHL page locally:
make html
You will find the generated website in the _build/html/
folder. If you open the index.html
file located inside that folder with your browser, you should be able to visualize the generated website.
If you wish to contribute, please feel free to submit a Pull Request or create an Issue.
The content of the tutorial is added in reStructuredText format, in the corresponding .rst
files, found inside the tutorial
and advanced
folders.