aboutsummaryrefslogtreecommitdiffhomepage
path: root/StartServer.sh
diff options
context:
space:
mode:
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