diff --git a/website/run.sh b/website/run.sh index 205ed3ec2..344eb8efb 100755 --- a/website/run.sh +++ b/website/run.sh @@ -3,10 +3,11 @@ set -e Bin=$(dirname $( readlink -f $0)) +Port=8081 LOGDIR=$Bin/../logs mkdir -p $LOGDIR cd $Bin -echo "Running camweb in $Bin" -../build.pl website && ./camweb --http=:8081 --root=$Bin --logdir=$LOGDIR \ No newline at end of file +echo "Running camweb in $Bin on port $Port" +../build.pl website && ./camweb --http=:$Port --root=$Bin --logdir=$LOGDIR \ No newline at end of file