aboutsummaryrefslogtreecommitdiffhomepage
path: root/StartServer.sh
diff options
context:
space:
mode:
authorMarvin Borner2018-08-16 16:03:14 +0200
committerMarvin Borner2018-08-16 16:03:14 +0200
commit59a401bb45cff1f0b01b241e24da8958ffa50e94 (patch)
treef4298c1a1521bfeec8004809a042bc9c9757ca7e /StartServer.sh
parent116e5bf6ecd2eedc75eb1509db20f1adec462d3d (diff)
Some small fixes
Diffstat (limited to 'StartServer.sh')
-rw-r--r--StartServer.sh4
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