2022-01-28 22:14:14 +08:00
|
|
|
#!/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
|
2022-02-08 03:47:24 +08:00
|
|
|
npm run dev
|
2022-01-28 22:14:14 +08:00
|
|
|
fi
|