This repository is a collection of documentation for Ascend supported open source projects.
index.rst
: the index of the opensource project doc.quick_start.rst
: 5 minutes or 600 words, quickstarts enable people to quickly complete a discrete, focused task by illustrating a workflow with only essential steps. See also in Github quickstart guide.install.rst
: installation guide, including common installation (such as binary, pypi, conda) for developers and a quick installation verificationtutorial.rst
: more complex than quickstart, help people learn about products and solve real world problems by guiding them through the entire workflow to complete a task. See also in Github tutorial guide.faq.rst
: A frequently asked questions (FAQ) list.
If you are interested in the project, please feel free to contribute it.
We use sphinx and rst file to create docs and you need to refer to rst syntax for help. Here is how you can create a new docs:
- Create a rst file. You can put it anywhere, but it must be better to classify it.
- Add the rst into the index.rst
When the development is ready, you can check and test it locally by following the directives below:
- Install the required dependencies:
pip install -r requirements.txt
- Building:
make html
- Server on localhost:
python -m http.server -d _build/html 4000
Then open localhost:4000 in your browser.