Where is the netmaker documentation hosted?
We encourage contributions! Follow the below documentation to build and make changes/additions to the documentation.
- Install dependencies: make, python3, pip, sphinx, sphinx-material theme
(debian instructions, varies by OS)
apt-get install make
apt-get install python3-sphinx
apt-get install python3-pip
pip install git+https://github.com/bashtage/sphinx-material.git
-
Clone the repo
git clone https://github.com/gravitl/netmaker-docs.git
-
Cd to root of repo and build
cd netmaker-docs && make html
-
Open _build/html/index.html in your browser
Be sure to follow the sphinx documentation while writing your changes: https://documentation-style-guide-sphinx.readthedocs.io/en/latest/style-guide.html
- Follow the "build" instructions to clone and build the documentation
- Create a branch:
git checkout -b <your-doc-change>
- Write your changes in the editor of your choice.
- Build the documentation again to make sure it compiles:
make html
- View it in your browser to make sure it looks good
- Once ready, commit your code and submit a PR against the develop branch, describing what changes you made.
-
Please label your branch using a sensible name.
-
Please open a Pull Request against the develop branch with your branch which clearly describes everything you've done and references any related GitHub issues.
-
Please respond to any feedback in a timely manner. Stale PR's will be closed periodically.