ClickHouse/docs/tools
Yatsishin Ilya 954501c4df Update link
2021-03-22 18:29:19 +03:00
..
.gitignore Update gitignore 2021-03-14 14:53:27 +03:00
amp.py support iframes in AMP version 2020-06-22 17:55:53 +03:00
blog.py [blog] add RSS feed (#12064) 2020-06-30 21:22:07 +03:00
build.py Fix issues with docs 2020-12-21 23:04:22 +03:00
cmake_in_clickhouse_generator.py Fix bugs 2020-09-29 11:59:40 +03:00
deploy-to-test.sh Update deploy-to-test.sh 2020-07-16 18:41:05 +03:00
easy_diff.py Convert to python3 (#15007) 2020-10-02 19:54:07 +03:00
easy_edit.sh Build Japanese docs (#7938) 2019-12-02 12:21:34 +03:00
github.py Fix issues with docs 2020-12-21 23:04:22 +03:00
make_links.sh Remove trash 2021-03-14 14:48:36 +03:00
mdx_clickhouse.py Fix issues with docs 2020-12-21 23:04:22 +03:00
nav.py Convert to python3 (#15007) 2020-10-02 19:54:07 +03:00
README.md Update link 2021-03-22 18:29:19 +03:00
redirects.py Fix issues with docs 2020-12-21 23:04:22 +03:00
release.sh More robust docs release 2021-01-01 18:49:09 +03:00
requirements.txt Update requirements.txt 2021-03-21 15:58:02 +03:00
single_page.py Remove trash and fix broken links 2021-03-15 14:56:04 +03:00
test.py Remove a test that cannot be fixed - less garbage in CI check output 2021-03-14 14:45:47 +03:00
util.py Better than nothing 2021-03-14 16:31:16 +03:00
website.py Fix issues with docs 2020-12-21 23:04:22 +03:00

How ClickHouse documentation is generated?

ClickHouse documentation is built using build.py script that uses mkdocs library and its dependencies to separately build all version of documentations (all languages in either single and multi page mode) as static HTMLs and then a PDF for each single page version. The results are then put in the correct directory structure. It is recommended to use Python 3.7 to run this script.

release.sh also pulls static files needed for official ClickHouse website from ../../website folder then pushes to specified GitHub repo to be served via GitHub Pages.

How to check if the documentation will look fine?

There are few options that are all useful depending on how large or complex your edits are.

Use GitHub web interface to edit

GitHub has Markdown support with preview feature, but the details of GitHub Markdown dialect are a bit different in ClickHouse documentation.

Install Markdown editor or plugin for your IDE

Usually those also have some way to preview how Markdown will look like, which allows to catch basic errors like unclosed tags very early.

Use build.py

Itll take some effort to go through, but the result will be very close to production documentation.

For the first time youll need to:

1. Install wkhtmltopdf

Follow the instructions on it's official website: https://wkhtmltopdf.org/downloads.html

2. Install CLI tools from npm

  1. sudo apt-get install npm for Debian/Ubuntu or brew install npm on Mac OS X.
  2. sudo npm install -g purify-css amphtml-validator.

3. Set up virtualenv

$ cd ClickHouse/docs/tools
$ mkdir venv
$ virtualenv -p $(which python3) venv
$ source venv/bin/activate
$ pip3 install -r requirements.txt

4. Run build.py

When all prerequisites are installed, running build.py without args (there are some, check build.py --help) will generate ClickHouse/docs/build folder with complete static html website.

The easiest way to see the result is to use --livereload=8888 argument of build.py. Alternatively, you can manually launch a HTTP server to serve the docs, for example by running cd ClickHouse/docs/build && python3 -m http.server 8888. Then go to http://localhost:8888 in browser. Feel free to use any other port instead of 8888.

How to subscribe on documentation changes?

At the moment theres no easy way to do just that, but you can consider:

  • To hit the “Watch” button on top of GitHub web interface to know as early as possible, even during pull request. Alternative to this is #github-activity channel of public ClickHouse Slack.
  • Some search engines allow to subscribe on specific website changes via email and you can opt-in for that for https://clickhouse.tech.