dragonroll/start-dev.sh
2024-09-27 00:56:22 +02:00

20 lines
235 B
Bash
Executable File

#!/bin/bash
trap terminate SIGINT
terminate(){
echo "Stopping gracefully..."
pkill -SIGINT -P $$
exit
}
script_full_path=$(dirname "$0")
node prebuild.js
cd client
./start-dev.sh &
cd ..
cd backend
./start-dev.sh &
cd ..
wait