diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r--[-rwxr-xr-x] | CODE_OF_CONDUCT.md | 0 | ||||
-rw-r--r--[-rwxr-xr-x] | README.md | 0 | ||||
-rw-r--r-- | StartServer.sh | 4 | ||||
-rw-r--r--[-rwxr-xr-x] | artisan | 0 |
5 files changed, 3 insertions, 4 deletions
@@ -5,4 +5,5 @@ Homestead.yaml Homestead.json .env .DS_Store -/storage/*.key
\ No newline at end of file +/storage/*.key +dump.rdb
\ No newline at end of file diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 21a3381..21a3381 100755..100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md diff --git a/README.md b/README.md index d05d8a6..d05d8a6 100755..100644 --- a/README.md +++ b/README.md 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 |