#!/bin/sh
mkdir -p "${0%/*}/data/log"
php -S 0.0.0.0:9999 "${0%/*}/app.php" 2>&1 1>> "${0%/*}/data/log/app.log" &
