aboutsummaryrefslogtreecommitdiffhomepage
path: root/StartServer.sh
blob: 66bfc4595602a608443d28921e18881d582da0d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash -e
redis-server &
PIDS[0]=$!
php artisan serve &
PIDS[1]=$!
npm run watch &#> /dev/null 2>&1
PIDS[2]=$!

trap "kill ${PIDS[*]}" SIGINT

wait