This repository hosts the Sphinx user documentation for the DSMS.
The full documentation is available at https://dsms.readthedocs.io/.
A server will start, generate the docs and listen for changes in the source files. This can be done by using docker or installing the development environment directly on the you machine. Next are installation guides for Docker and Linux OS.
First, build the Docker image by running the following command:
docker build -f local_build.Dockerfile -t dsms-docs .Then, start the program by running:
docker run --rm -v $PWD:/app -p 8000:8000 dsms-docsTo generate a PDF of the documentation, simply run from the root project folder the following code. We recommend using virtual environments.
pip install -r requirements.txt
make -C docs latexpdfThe generated PDF can be found under docs/_build/latex/DSMS_user_docs.pdf