Serve scripts
This commit is contained in:
parent
bf0b1ec047
commit
aca088909e
2 changed files with 6 additions and 0 deletions
3
serve.bat
Normal file
3
serve.bat
Normal 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
3
serve.sh
Executable 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
|
Reference in a new issue