aboutsummaryrefslogtreecommitdiffhomepage
path: root/StartServer.sh
blob: a81c1e95a1533f93381d34bd08d586468e257958 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/bash -e
redis-server &
PIDS[0]=$!
php artisan serve --host=192.168.0.59 &
PIDS[1]=$!

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

wait