faster docs preview (#7383)

There is generally little need to preview the PDF version of the docs.
Also, opening up the Python server on 0.0.0.0 (the default) triggers OS
warnings on macOS.

CHANGELOG_BEGIN
CHANGELOG_END
This commit is contained in:
Gary Verhaegen 2020-09-16 14:12:59 +02:00 committed by GitHub
parent ddbb334ecb
commit adc0b45f5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ cleanup()
rm -rf $BUILD_DIR
mkdir $BUILD_DIR
bazel build //docs:docs
tar -zxf ../../bazel-bin/docs/html.tar.gz -C $BUILD_DIR
bazel build //docs:docs-no-pdf
tar -zxf ../../bazel-bin/docs/html-only.tar.gz -C $BUILD_DIR
cd $BUILD_DIR/html
python -m http.server 8000
python -m http.server 8000 --bind 127.0.0.1