8000 graphql-java/docs at master · utwyko/graphql-java · GitHub
[go: up one dir, main page]

Skip to content

Latest commit

 

History

History
 
 

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