E506 graphql-java/docs/readme.md at root-node-errors · FONGYEE/graphql-java · GitHub
[go: up one dir, main page]

Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 506 Bytes

File metadata and controls

24 lines (17 loc) · 506 Bytes

To build the documentation locally do the following :

 > pip install sphinx sphinx-autobuild
 > cd docs
 > make html

To build the other language(like Chinese version) documentation locally do the following :

 > pip install sphinx sphinx-autobuild
 > cd docs
 > make -e SPHINXOPTS="-D language='zh_CN'" html

This will create the output in _build/html so on Mac you should be able to

> open _build/html/index.html

which will open a browser with the rendered documentation

0