#!/bin/bash

if [ -z "$1" ]; then
    directory='.'
else
    directory="$1"
fi

live-server --browser=firefox-bin --open="$directory" --port=6969
