pytorch3d/scripts/build_website.sh
Jeremy Reizenstein 23ef666db1 build website in docker container
Summary: Do the website building in a docker container to avoid worrying about dependencies.

Reviewed By: nikhilaravi

Differential Revision: D30223892

fbshipit-source-id: 77b7b4630188167316891381f6ca9e9fbe7f0a05
2021-10-06 18:09:45 -07:00

67 lines
1.4 KiB
Bash

#!/bin/bash
# Copyright (c) Facebook, Inc. and its affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# run this script from the project root using `./scripts/build_docs.sh`
set -e
usage() {
echo "Usage: $0 [-b]"
echo ""
echo "Build PyTorch3D documentation."
echo ""
echo " -b Build static version of documentation (otherwise start server)"
echo ""
exit 1
}
BUILD_STATIC=false
while getopts 'hb' flag; do
case "${flag}" in
h)
usage
;;
b)
BUILD_STATIC=true
;;
*)
usage
;;
esac
done
echo "-----------------------------------"
echo "Building PyTorch3D Docusaurus site"
echo "-----------------------------------"
cd website
yarn
cd ..
echo "-----------------------------------"
echo "Generating tutorials"
echo "-----------------------------------"
cwd=$(pwd)
mkdir -p "website/_tutorials"
mkdir -p "website/static/files"
python scripts/parse_tutorials.py --repo_dir "${cwd}"
cd website
if [[ $BUILD_STATIC == true ]]; then
echo "-----------------------------------"
echo "Building static site"
echo "-----------------------------------"
yarn build
else
echo "-----------------------------------"
echo "Starting local server"
echo "-----------------------------------"
yarn start
fi