dragonroll/start.sh

17 lines
214 B
Bash
Raw Permalink Normal View History

2024-09-21 17:08:36 +00:00
#!/bin/bash
trap terminate SIGINT
terminate(){
echo "Stopping gracefully..."
pkill -SIGINT -P $$
exit
}
script_full_path=$(dirname "$0")
cd client
./start.sh &
cd ..
cd backend
./start.sh &
cd ..
wait