gradio/scripts/run_frontend.sh
2022-02-07 14:47:24 -05:00

10 lines
186 B
Bash

#!/bin/bash
if [ -z "$(ls | grep CONTRIBUTING.md)" ]; then
echo "Please run the script from repo directory"
exit -1
else
echo "Running the frontend"
cd frontend
npm run dev
fi