basho / basho_docs

Basho Products Documentation
http://docs.basho.com
Other
169 stars 191 forks source link

Massive update to docs #2533

Open pjaclark opened 10 months ago

pjaclark commented 10 months ago

Creating as a Draft PR so the below issues can be considered before merging.

Contains docs for all released versions of Riak KV since 2.0.0. New docs for Riak KV 2.2.6, 2.9.x, 3.0.x, and 3.2.x, Riak CS 2.1.2, 3.0.x, Riak TS 3.0.x. Includes a multitude of fixes to content, plus layout, render and markdown issues. A live version of this is at https://www.tiot.jp/riak-docs/.

Issues that should be looked at before merging:

The search issue is the only big item that needs looking at for deploying onto another server. This is why I haven't deployed a copy to https://docs.riak.info/ yet.

I suggest we make a set of config.yaml files (e.g. config.riak-com.yaml and config.tiot-jp.yaml, for example) with specific changes for each. The README would then tell the user to copy one and (if wanted) make changes for their use.

pjaclark commented 10 months ago

@nsaadouni Here's the PR you mentioned in this commit.

pjaclark commented 7 months ago

Amongst the other content fixes, I have now added an offline search function using Lunr JS. Using the same search box as before one can search the currently selected version of documentation. This means that if performing a search while browsing the KV 3.2.0 docs, it won't find irrelevant KV 2.0.1 content. This avoids the issue of search results finding riak-admin and riak-repl for KV 2.x when you need riak admin and riak repl for KV 3.x and vice-versa.

The offline index is built by Hugo as part of the site build process. The new search function is done purely in the browser, so there is not depency on a 3rd party website to provide a search function. This makes the search function independent of the domain that Riak Docs is on.

For those wishing to build the docs themselves, we have included a docker script that builds an image of Hugo that can then either serve the site directly via Hugo or be used to export all the necessary html files for the site to be hosted via Apache or nginx. Please see docker/deply.riak-info.docs.sh and docker/docker-compose.generate-docs-riak-info.yaml for an example deploy script.