Welcome to the RSE-ops Knowledge base! Here you can find guides and resources for the RSE-ops landscape.
⭐️ View the Documentation ⭐️
You can clone the repository right to where you want to host the docs:
git clone https://github.com/rse-ops/knowledge.git
cd knowledge
You can add documentation as markdown files under docs and make sure they are generally linked from an index.md somewhere!
You likely want to set up a python environment to install dependencies to:
python -m venv env
source env/bin/activate
pip install -r requirements.txt
And then build docs:
cd _build/html/
python -m http.server 9999
And open your browser to http://127.0.0.1.
We recommend that you submit your changes as a pull request, as we can review them and also have the spelling automatically checked. If you want to check spelling on your own, you can install https://github.com/crate-ci/typos and then run the executable on the various folders:
$ typos ./docs ./index.md
If you don't want to do this, it will run during the CI, and you can see your typos in the GitHub workflow interface.
- add custom functionality for sphinx gallery for examples
- quizzes and code alongside tutorials/articles?