At Start9, we see great value in maintaining clear and accurate documentation for our already simple and friendly products. These docs are a continuous work-in-progress, and we welcome contributions from our partners and customers.
These are the basic tools this project uses:
Docs are written in RestructuredText. RestructuredText is a file format for textual data used primarily for technical documentation.
The tool we used to converts restructuredText and Markdown to HTML. Sphinx also has directives and extensions to add additional options for formatting the text.
A customized version of the theme used by Scylla documentation projects. It also adds a set of custom functionalities and styles.
The extension used to build docs for different versions.
Install python3 Install poetry Install pyenv
For installations with macOS:
brew install python3
brew install poetry
- Clone this repository and enter the project folder:
git clone https://github.com/Start9Labs/documentation.git && cd documentation
- Install theme submodule:
git submodule update --init
- Run setup script to install project dependencies:
chmod a+x site/_utils/setup.sh
./site/_utils/setup.sh
- Navigate to the
site
folder and start the project:
cd site
make clean && make preview
When editing these files, begin a livereload environment by running make preview
while in the ./site/
directory.
When editing any css or table of contents organization changes, the livereload environment must be ended and make clean
run before starting make preview
again.
If you edit something inside sphinx-scylladb-theme
, you will need to cd
into that directory and run npm run build
.
- Build for versioning (must be on master) branch:
make multiversion
- To view version metadata:
make multiversionpreview
If you notice a mistake in the docs, or you have an idea for improving them, we would like to know about it. You can either fix the mistake yourself and submit a pull request, or you can report the mistake by submitting an issue <https://github.com/Start9Labs/documentation/issues>
__ .
Click on the "Issues" tab in the top navbar. Provide a good title and describe clearly the mistake or improvement.
Click on the "Pull requests" tab in the top navbar. Select the green "New pull request button" in the top right section. Select your branch for the compare dropdown, and master as the base. Provide an appropriate title and summary of the changes in the pull request description. Changes will be reviewed and merged when satisfactory.
https://sphinx-doc.org/rest.html https://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html https://www.siafoo.net/help/reST https://thomas-cokelaer.info/tutorials/sphinx/rest_syntax.html https://sublime-and-sphinx-guide.readthedocs.io/en/latest/lists.html