Page Titles & All Photos Page #5

Merged
me merged 14 commits from dev into main 2025-06-06 08:02:52 -07:00
5 changed files with 331 additions and 142 deletions
Showing only changes of commit 18cd38b194 - Show all commits

7
run.sh
View File

@ -41,6 +41,10 @@ while getopts ':p:h' opt; do
esac esac
done done
if [[ -z $ports ]]; then
ports=8080
fi
## Build Environment ## ## Build Environment ##
# Ensure we are executing from this file's directory. # Ensure we are executing from this file's directory.
@ -87,9 +91,6 @@ find files/photos/ -name "*".html -print -delete
count=1 count=1
http_code=0 http_code=0
port="${ports%% *}" port="${ports%% *}"
if [[ -z $port ]]; then
port="8080"
fi
photos_uri=":$port/photos/" photos_uri=":$port/photos/"
while [[ $http_code != "200" ]]; do while [[ $http_code != "200" ]]; do
log "Sleeping for '$count' while waiting for $photos_uri to come up." log "Sleeping for '$count' while waiting for $photos_uri to come up."