aboutsummaryrefslogtreecommitdiffhomepage
path: root/StartServer.sh
blob: 77a36be4f2d6b2c09f92821fc59c424c242b1d5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash -e
redis-server &
PIDS[0]=$!
node resources/assets/js/chatServer.js &
PIDS[1]=$!
php artisan queue:work & 
PIDS[2]=$!
php artisan serve &
PIDS[3]=$!
npm run watch > /dev/null 2>&1
PIDS[4]=$!

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

wait