diff --git a/serve.bat b/serve.bat new file mode 100644 index 0000000..3000983 --- /dev/null +++ b/serve.bat @@ -0,0 +1,3 @@ +@echo off +echo This script assumes php.exe is in the PATH variable +php -S localhost:8000 -t public/ server.php diff --git a/serve.sh b/serve.sh new file mode 100755 index 0000000..46cf600 --- /dev/null +++ b/serve.sh @@ -0,0 +1,3 @@ +#!/bin/sh +echo 'This script assumes php is in the PATH variable' +php -S localhost:8000 -t public/ server.php