gradio/scripts/launch_website.sh

13 lines
244 B
Bash
Raw Normal View History

#!/bin/bash
if [ -z "$(ls | grep CONTRIBUTING.md)" ]; then
echo "Please run the script from repo directory"
exit -1
else
echo "Building the website"
cd website/homepage
npm install
npm run build
cd dist
python -m http.server
fi