streamv2v_demo / start.sh
jbilcke-hf's picture
jbilcke-hf HF staff
original code by JeffLiang and Radames
51669fc
raw
history blame
No virus
257 Bytes
#!/bin/bash
cd frontend
npm install
npm run build
if [ $? -eq 0 ]; then
echo -e "\033[1;32m\nfrontend build success \033[0m"
else
echo -e "\033[1;31m\nfrontend build failed\n\033[0m" >&2 exit 1
fi
cd ../
python3 main.py --port 7860 --host 0.0.0.0