Serve scripts

This commit is contained in:
flash 2016-02-02 13:48:33 +01:00
parent bf0b1ec047
commit aca088909e
2 changed files with 6 additions and 0 deletions

3
serve.bat Normal file
View file

@ -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

3
serve.sh Executable file
View file

@ -0,0 +1,3 @@
#!/bin/sh
echo 'This script assumes php is in the PATH variable'
php -S localhost:8000 -t public/ server.php