15 lines
289 B
Bash
15 lines
289 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
DIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
cd $DIR
|
||
|
|
||
|
php -S localhost:8081 -t "$DIR/.."&
|
||
|
|
||
|
echo "Waiting until PHP webserver is ready on port 8081"
|
||
|
while [[ -z `curl -s 'http://localhost:8081' ` ]]
|
||
|
do
|
||
|
echo -n "."
|
||
|
sleep 2s
|
||
|
done
|
||
|
|
||
|
echo "PHP webserver is up"
|