aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin/devserver
blob: b25d26571107b947f7b0ac37f7c7dd94f030e01c (plain)
1
2
3
4
5
6
7
#!/bin/sh
if [ $# -ne 1 ]; then
    echo 'usage: bin/devserver <port>'
    exit 1
fi
cd "$(dirname "$0")"/.. || exit 1
PHP_CLI_SERVER_WORKERS=5 php -S 0.0.0.0:"$1" index.php