5 lines
128 B
Bash
5 lines
128 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# start a local instance of the app using PHP's built-in webserver
|
||
|
php -S localhost:8080 -t public/ public/index.php
|