#!/bin/bash

PORT="8000"

if [ -n "$1" ]; then
    PORT="$1"
fi

php -S localhost:$PORT -t public/ public/index.php
