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

    Skip to content

    Latest commit

     

    History

    History
     
     

    Folders and files

    NameName
    Last commit message
    Last commit date

    parent directory

    ..
     
     
     
     
     
     
     
     

    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