diff options
author | Marvin Borner | 2018-08-16 16:03:14 +0200 |
---|---|---|
committer | Marvin Borner | 2018-08-16 16:03:14 +0200 |
commit | 59a401bb45cff1f0b01b241e24da8958ffa50e94 (patch) | |
tree | f4298c1a1521bfeec8004809a042bc9c9757ca7e /StartServer.sh | |
parent | 116e5bf6ecd2eedc75eb1509db20f1adec462d3d (diff) |
Some small fixes
Diffstat (limited to 'StartServer.sh')
-rw-r--r-- | StartServer.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/StartServer.sh b/StartServer.sh index 66bfc45..a81c1e9 100644 --- a/StartServer.sh +++ b/StartServer.sh @@ -1,10 +1,8 @@ #!/bin/bash -e redis-server & PIDS[0]=$! -php artisan serve & +php artisan serve --host=192.168.0.59 & PIDS[1]=$! -npm run watch &#> /dev/null 2>&1 -PIDS[2]=$! trap "kill ${PIDS[*]}" SIGINT |