pytorch3d/scripts/build_website.sh
Patrick Labatut 25d2e2c8b7 Use a consistent case for PyTorch3D
Summary: Use a consistent case for PyTorch3D (matching the logo...): replace all occurrences of PyTorch3d with PyTorch3D across the codebase (including documentation and notebooks)

Reviewed By: wanyenlo, gkioxari

Differential Revision: D20427546

fbshipit-source-id: 8c7697f51434c51e99b7fe271935932c72a1d9b9
2020-03-17 12:48:43 -07:00

61 lines
1.2 KiB
Bash

#!/bin/bash
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
# run this script from the project root using `./scripts/build_docs.sh`
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 || exit
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 || exit
if [[ $BUILD_STATIC == true ]]; then
echo "-----------------------------------"
echo "Building static site"
echo "-----------------------------------"
yarn build
else
echo "-----------------------------------"
echo "Starting local server"
echo "-----------------------------------"
yarn start
fi