mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 14:44:21 +00:00
4 lines
109 B
Bash
Executable file
4 lines
109 B
Bash
Executable file
#!/bin/sh
|
|
port=8000
|
|
if [ -n "$1" ]; then port=$1; fi
|
|
php -S localhost:$port -d short_open_tag=true index.php
|