X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/007446e69619bae44193f219b6d9b7fda31bafad..713f0a0a96840404115b57ae92b8a2f2a554383e:/doc/README.textile diff --git a/doc/README.textile b/doc/README.textile index de97e5d3bd..85757980a7 100644 --- a/doc/README.textile +++ b/doc/README.textile @@ -1,46 +1,82 @@ +###. Copyright (C) The Arvados Authors. All rights reserved. +.... +.... SPDX-License-Identifier: CC-BY-SA-3.0 + h1. Arvados documentation This is the source code for "doc.arvados.org":http://doc.arvados.org. -Here's how to build the HTML pages locally so you can preview your -updates before you commit and push. +Here's how to build the HTML pages locally so you can preview your updates before you commit and push. + +Additional information is available on the "'Documentation' page on the Arvados wiki":https://dev.arvados.org/projects/arvados/wiki/Documentation. + +h2. Install dependencies + +
+arvados/doc$ sudo apt-get install build-essential libcurl4-openssl-dev libgnutls28-dev libssl-dev
+arvados/doc$ bundle install
+
+ +To generate the Python SDK documentation, these additional dependencies are needed: + +
+arvados/doc$ sudo apt-get install python3-pip
+arvados/doc$ pip3 install arvados-python-client
+arvados/doc$ pip3 install pdoc3
+
+ +h2. Generate HTML pages + +
+arvados/doc$ bundle exec rake
+
+ +Alternately, to make the documentation browsable on the local filesystem: -Additional information is available on the -"'Documentation' page on the Arvados wiki":https://arvados.org/projects/arvados/wiki/Documentation. +
+arvados/doc$ bundle exec rake generate baseurl=$PWD/.site
+
-h2. 0. Install dependencies +h2. Run linkchecker - arvados/doc$ bundle install +If you have "Linkchecker":http://wummel.github.io/linkchecker/ installed on +your system, you can run it against the documentation: -h2. 1. Generate HTML pages +
+arvados/doc$ bundle exec rake linkchecker baseurl=file://$PWD/.site
+
- arvados/doc$ rake +Please note that this will regenerate your $PWD/.site directory. -h2. 2. Preview HTML pages +h2. Preview HTML pages - arvados/doc$ rake run +
+arvados/doc$ bundle exec rake run
 [2014-03-10 09:03:41] INFO  WEBrick 1.3.1
 [2014-03-10 09:03:41] INFO  ruby 2.1.1 (2014-02-24) [x86_64-linux]
 [2014-03-10 09:03:41] INFO  WEBrick::HTTPServer#start: pid=8926 port=8000
+
Preview the rendered pages at "http://localhost:8000":http://localhost:8000. -h2. 3. Publish HTML pages inside Workbench +h2. Publish HTML pages inside Workbench (or some other web site) -You can set @baseurl@ (the URL prefix for all internal links), -@arvados_api_host@ and @arvados_workbench_host@ without changing -@_config.yml@: +You can set @baseurl@ (the URL prefix for all internal links), @arvados_cluster_uuid@, @arvados_api_host@ and @arvados_workbench_host@ without changing @_config.yml@: - arvados/doc$ rake generate baseurl=/doc arvados_api_host=xyzzy.arvadosapi.com +
+arvados/doc$ bundle exec rake generate baseurl=/doc arvados_api_host=xyzzy.arvadosapi.com
+
-Make the docs appear at {workbench_host}/doc by creating a symbolic -link in Workbench's @public@ directory, pointing to the generated HTML -tree. +Make the docs appear at {workbench_host}/doc by creating a symbolic link in Workbench's @public@ directory, pointing to the generated HTML tree. - arvados/doc$ ln -sn ../../../doc/.site ../apps/workbench/public/doc +
+arvados/doc$ ln -sn ../../../doc/.site ../apps/workbench/public/doc
+
-h2. 4. Delete generated files +h2. Delete generated files - arvados/doc$ rake realclean +
+arvados/doc$ bundle exec rake realclean
+