ClickHouse/website/README.md

30 lines
970 B
Markdown
Raw Normal View History

2019-09-23 16:18:19 +00:00
ClickHouse website is built alongside it's documentation via [docs/tools](https://github.com/ClickHouse/ClickHouse/tree/master/docs/tools), see [README.md there](https://github.com/ClickHouse/ClickHouse/tree/master/docs/tools/README.md).
2017-10-08 22:53:38 +00:00
# How to quickly test the main page of the website
```
cd ../docs/tools
sudo apt install python-3 pip
pip3 install -r requirements.txt
2020-12-21 20:04:22 +00:00
# This is needed only when documentation is included
sudo npm install -g purify-css amphtml-validator
virtualenv build
2021-11-12 20:25:55 +00:00
./build.py --skip-multi-page --skip-single-page --skip-amp --skip-blog --skip-git-log --skip-docs --livereload 8080
# Open the web browser and go to http://localhost:8080/
```
2021-03-08 22:43:18 +00:00
# How to quickly test the blog
```
2021-11-12 20:25:55 +00:00
./build.py --skip-multi-page --skip-single-page --skip-amp --skip-git-log --skip-docs --livereload 8080
2021-03-08 22:43:18 +00:00
```
2021-03-14 12:01:03 +00:00
2021-08-11 10:05:18 +00:00
# How to quickly test the broken links in docs
2021-03-14 12:01:03 +00:00
```
2021-11-12 20:25:55 +00:00
./build.py --skip-multi-page --skip-amp --skip-blog --skip-git-log --lang en --livereload 8080
2021-03-14 12:01:03 +00:00
```