gradio/scripts/launch_website.sh
2022-03-01 15:40:17 -05:00

13 lines
244 B
Bash

#!/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