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

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

wait